From 7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Sat, 30 Oct 2004 15:42:29 +0000 Subject: - 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 --- admin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'admin.php') diff --git a/admin.php b/admin.php index f302dab33..a7d9041f9 100644 --- a/admin.php +++ b/admin.php @@ -53,7 +53,7 @@ switch ( $_GET['page'] ) $query = 'SELECT name FROM '.GROUPS_TABLE; $query.= ' WHERE id = '.$_GET['group_id']; $query.= ';'; - $result = mysql_query( $query ); + $result = pwg_query( $query ); if ( mysql_num_rows( $result ) > 0 ) { $row = mysql_fetch_array( $result ); @@ -141,7 +141,7 @@ if ( $title == '' ) $title = $lang['title_default']; $query = 'SELECT id FROM '.WAITING_TABLE; $query.= " WHERE validated='false'"; $query.= ';'; -$result = mysql_query( $query ); +$result = pwg_query( $query ); $nb_waiting = ''; if ( mysql_num_rows( $result ) > 0 ) { @@ -151,7 +151,7 @@ if ( mysql_num_rows( $result ) > 0 ) $query = 'SELECT id FROM '.COMMENTS_TABLE; $query.= " WHERE validated='false'"; $query.= ';'; -$result = mysql_query( $query ); +$result = pwg_query( $query ); $nb_comments = ''; if ( mysql_num_rows( $result ) > 0 ) { -- cgit v1.2.3