aboutsummaryrefslogtreecommitdiffstats
path: root/profile.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-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';