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 --- include/functions_group.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/functions_group.inc.php') diff --git a/include/functions_group.inc.php b/include/functions_group.inc.php index 12e85bd49..0a4356e3a 100644 --- a/include/functions_group.inc.php +++ b/include/functions_group.inc.php @@ -34,7 +34,7 @@ function get_group_restrictions( $group_id ) $query.= ' FROM '.PREFIX_TABLE.'categories'; $query.= " WHERE status = 'private'"; $query.= ';'; - $result = mysql_query( $query ); + $result = pwg_query( $query ); $privates = array(); while ( $row = mysql_fetch_array( $result ) ) { @@ -46,7 +46,7 @@ function get_group_restrictions( $group_id ) $query.= ' FROM '.PREFIX_TABLE.'group_access'; $query.= ' WHERE group_id = '.$group_id; $query.= ';'; - $result = mysql_query( $query ); + $result = pwg_query( $query ); while ( $row = mysql_fetch_array( $result ) ) { array_push( $authorized, $row['cat_id'] ); @@ -92,7 +92,7 @@ function is_group_allowed( $category_id, $restrictions ) $query.= ' FROM '.PREFIX_TABLE.'categories'; $query.= ' WHERE id = '.$category_id; $query.= ';'; - $row = mysql_fetch_array( mysql_query( $query ) ); + $row = mysql_fetch_array( pwg_query( $query ) ); if ( !isset( $row['id_uppercat'] ) ) $row['id_uppercat'] = ''; if ( $row['id_uppercat'] == '' ) $is_root = true; $category_id = $row['id_uppercat']; -- cgit v1.2.3