]> source.dussan.org Git - nextcloud-server.git/commitdiff
use new sanitizeHTML() function
authorBjoern Schiessle <schiessle@owncloud.com>
Thu, 21 Jun 2012 11:57:18 +0000 (13:57 +0200)
committerBjoern Schiessle <schiessle@owncloud.com>
Thu, 21 Jun 2012 11:57:18 +0000 (13:57 +0200)
apps/bookmarks/templates/list.php
core/templates/layout.user.php
core/templates/login.php
settings/ajax/togglegroups.php

index fdd2b19f79ac0dcee2ce737cdb57c26a975c66e2..1ed79264d0dfee561df14c5d845f35c2af4da51f 100644 (file)
@@ -7,7 +7,7 @@
  * See the COPYING-README file.
  */
 ?>
-<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo htmlentities($_GET['tag'],ENT_COMPAT,'utf-8'); ?>" />
+<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo OCP\Util::sanitizeHTML($_GET['tag']); ?>" />
 <div id="controls">
        <input type="hidden" id="bookmark_add_id" value="0" />
        <input type="text" id="bookmark_add_url" placeholder="<?php echo $l->t('Address'); ?>" class="bookmarks_input" />
index 500ac9beda3b41444e095233eba5b3dac1b80257..660c9522c7e08dda5a20ed69260422c5d0204316 100644 (file)
@@ -47,7 +47,7 @@
                        <a href="<?php echo link_to('', 'index.php'); ?>" title="" id="owncloud"><img class="svg" src="<?php echo image_path('', 'logo-wide.svg'); ?>" alt="ownCloud" /></a>
                        <a class="header-right header-action" id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"><img class="svg" alt="<?php echo $l->t('Log out');?>" title="<?php echo $l->t('Log out');?>" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a>
                        <form class="searchbox header-right" action="#" method="post">
-                               <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])){echo htmlentities($_POST['query']);};?>" autocomplete="off" />
+                               <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])){echo OC_Util::sanitizeHTML($_POST['query']);};?>" autocomplete="off" />
                        </form>
                </div></header>
 
index a40bf5c330a8da2a3cc0655b87f29c21f74b5b03..985cf90c2a243b414ed9ce180bd9d03909ca2156 100644 (file)
@@ -7,7 +7,7 @@
                <?php endif; ?>
                <p class="infield">
                        <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
-                       <input type="text" name="user" id="user" value="<?php echo !empty($_POST['user'])?htmlentities($_POST['user'],ENT_COMPAT,'utf-8').'"':'" autofocus'; ?> autocomplete="off" required />
+                       <input type="text" name="user" id="user" value="<?php echo !empty($_POST['user'])?OC_Util::sanitizeHTML($_POST['user'],ENT_COMPAT,'utf-8').'"':'" autofocus'; ?> autocomplete="off" required />
                </p>
                <p class="infield">
                        <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
index f76e22f51d2b5001845cfa7b38e6b3fd6111aa65..7773c1049c3eb3f24553492a59e53fa839c9141f 100644 (file)
@@ -10,7 +10,7 @@ $error = "add user to";
 $action = "add";
 
 $username = $_POST["username"];
-$group = htmlentities($_POST["group"]);
+$group = OC_Util::sanitizeHTML($_POST["group"]);
 
 if(!OC_Group::groupExists($group)){
        OC_Group::createGroup($group);