diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-10-30 15:42:29 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-10-30 15:42:29 +0000 |
commit | 7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 (patch) | |
tree | e068090892b16db654a2bf0c2886b65eaf44a14f /admin/group_list.php | |
parent | 3730c810f254267ab1fb49f4cad55866e780ad6e (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 '')
-rw-r--r-- | admin/group_list.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index a0f4e9d24..20a9788c2 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -39,7 +39,7 @@ if ( isset ( $_GET['delete'] ) and is_numeric( $_GET['delete'] ) ) $query.= ' FROM '.PREFIX_TABLE.'groups'; $query.= ' WHERE id = '.$_GET['delete']; $query.= ';'; - $row = mysql_fetch_array( mysql_query( $query ) ); + $row = mysql_fetch_array( pwg_query( $query ) ); // confirm group deletion ? if ( !isset( $_GET['confirm'] ) or $_GET['confirm'] != 1 ) { @@ -60,7 +60,7 @@ if ( isset ( $_GET['delete'] ) and is_numeric( $_GET['delete'] ) ) $query.= ' FROM '.PREFIX_TABLE.'groups'; $query.= ' WHERE id = '.$_GET['delete']; $query.= ';'; - $row2 = mysql_fetch_array( mysql_query( $query ) ); + $row2 = mysql_fetch_array( pwg_query( $query ) ); if ( $row2['nb_result'] > 0 ) { delete_group( $_GET['delete'] ); @@ -91,7 +91,7 @@ if ( isset( $_POST['submit'] ) ) $query.= ' FROM '.PREFIX_TABLE.'groups'; $query.= " WHERE name = '".$_POST['name']."'"; $query.= ';'; - $result = mysql_query( $query ); + $result = pwg_query( $query ); if ( mysql_num_rows( $result ) > 0 ) { array_push( $error, $lang['group_add_error2'] ); @@ -103,7 +103,7 @@ if ( isset( $_POST['submit'] ) ) $query = ' INSERT INTO '.PREFIX_TABLE.'groups'; $query.= " (name) VALUES ('".$_POST['name']."')"; $query.= ';'; - mysql_query( $query ); + pwg_query( $query ); } } //-------------------------------------------------------------- errors display @@ -125,7 +125,7 @@ $query = 'SELECT id,name'; $query.= ' FROM '.PREFIX_TABLE.'groups'; $query.= ' ORDER BY id ASC'; $query.= ';'; -$result = mysql_query( $query ); +$result = pwg_query( $query ); while ( $row = mysql_fetch_array( $result ) ) { $vtp->addSession( $sub, 'group' ); |