diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-09-19 03:23:19 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-09-19 03:23:19 +0000 |
commit | 131cf74ba44c35ac82cb949bf33794c8f579105c (patch) | |
tree | 0262aaf1073f0e55d5287c66ce92cc4551a1805c /qsearch.php | |
parent | b2c5c04c6a7778a11b285592fad04fe1574eef28 (diff) |
merge -r 2094 from branch-1_7 to trunk
- fix: quick search error if the query term contained " or '
- optimized sql query in sync_users (called every time on admin page) - a lot faster when #user_cache_categories is big
- added function Template->delete_block_vars (opposite of assign_block_vars)
git-svn-id: http://piwigo.org/svn/trunk@2095 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'qsearch.php')
-rw-r--r-- | qsearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qsearch.php b/qsearch.php index a7fc1d956..2635ea31a 100644 --- a/qsearch.php +++ b/qsearch.php @@ -43,7 +43,7 @@ $query =' INSERT INTO '.SEARCH_TABLE.' (rules, last_seen) VALUES - (\''.serialize($search).'\', NOW() ) + (\''.addslashes(serialize($search)).'\', NOW() ) ;'; pwg_query($query); |