mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-21 00:53:04 +02:00
- 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:
+3
-3
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user