From 7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Sat, 30 Oct 2004 15:42:29 +0000 Subject: - 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 --- profile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'profile.php') 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'; -- cgit v1.2.3