aboutsummaryrefslogtreecommitdiffstats
path: root/profile.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-10-30 15:42:29 +0000
committerz0rglub <z0rglub@piwigo.org>2004-10-30 15:42:29 +0000
commit7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 (patch)
treee068090892b16db654a2bf0c2886b65eaf44a14f /profile.php
parent3730c810f254267ab1fb49f4cad55866e780ad6e (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 'profile.php')
-rw-r--r--profile.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/profile.php b/profile.php
index 8eb2ee0b8..4aa34adeb 100644
--- a/profile.php
+++ b/profile.php
@@ -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';