aboutsummaryrefslogtreecommitdiffstats
path: root/admin/search.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-10-30 15:42:29 +0000
committerz0rglub <z0rglub@piwigo.org>2004-10-30 15:42:29 +0000
commit7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 (patch)
treee068090892b16db654a2bf0c2886b65eaf44a14f /admin/search.php
parent3730c810f254267ab1fb49f4cad55866e780ad6e (diff)
- function mysql_query replaced by pwg_query : the same with debugging
features - by default, DEBUG is set to 0 (off) git-svn-id: http://piwigo.org/svn/trunk@587 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/search.php')
-rw-r--r--admin/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/search.php b/admin/search.php
index 4bfae3039..9a5b27ef4 100644
--- a/admin/search.php
+++ b/admin/search.php
@@ -74,7 +74,7 @@ if ( !empty($search_match) )
FROM " . USERS_TABLE . "
WHERE username LIKE '" . str_replace("\'", "''", $username_search) . "'
ORDER BY username";
- if ( !($result = mysql_query($sql)) )
+ if ( !($result = pwg_query($sql)) )
{
die('Could not obtain search results');
}