diff options
author | plegall <plg@piwigo.org> | 2008-10-03 21:26:21 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2008-10-03 21:26:21 +0000 |
commit | 0287283e382bcc89d8806fa32576532d5cfbc3df (patch) | |
tree | f29409a9b54720486dcb962812b25849860d4820 /admin | |
parent | 606fb2346a21906e0e647272e201364a47ed97c1 (diff) |
bug fixed: remove useless mysql_real_escape because web api already process
all input parameters.
git-svn-id: http://piwigo.org/svn/trunk@2646 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/functions.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index badd5955f..932578963 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1819,8 +1819,6 @@ function get_extents($start='') function create_tag($tag_name) { - $tag_name = mysql_real_escape_string($tag_name); - // does the tag already exists? $query = ' SELECT id |