- 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
This commit is contained in:
z0rglub
2004-10-30 15:42:29 +00:00
parent 3730c810f2
commit 7cd9b65e32
40 changed files with 298 additions and 288 deletions
+3 -3
View File
@@ -87,7 +87,7 @@ if ( isset( $_POST['submit'] ) )
}
$query.= ' WHERE id = '.$user['id'];
$query.= ';';
mysql_query( $query );
pwg_query( $query );
if ( isset( $_POST['use_new_pwd'] ) )
{
@@ -95,7 +95,7 @@ if ( isset( $_POST['submit'] ) )
$query.= " SET password = '".md5( $_POST['password'] )."'";
$query.= ' WHERE id = '.$user['id'];
$query.= ';';
mysql_query( $query );
pwg_query( $query );
}
if ( isset( $_POST['create_cookie'] ) )
{
@@ -106,7 +106,7 @@ if ( isset( $_POST['submit'] ) )
$query.= ' SET expiration = '.$_POST['cookie_expiration'];
$query.= " WHERE id = '".$page['session_id']."'";
$query.= ';';
mysql_query( $query );
pwg_query( $query );
}
// redirection
$url = 'category.php';