- 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:
parent
3730c810f2
commit
7cd9b65e32
40 changed files with 299 additions and 289 deletions
|
|
@ -79,7 +79,7 @@ SELECT id
|
|||
FROM '.SESSIONS_TABLE.'
|
||||
WHERE id = \''.$generated_id.'\'
|
||||
;';
|
||||
$result = mysql_query($query);
|
||||
$result = pwg_query($query);
|
||||
if (mysql_num_rows($result) == 0)
|
||||
{
|
||||
$id_found = true;
|
||||
|
|
@ -94,7 +94,7 @@ INSERT INTO '.SESSIONS_TABLE.'
|
|||
(\''.$generated_id.'\','.$userid.','.$expiration.',
|
||||
\''.$_SERVER['REMOTE_ADDR'].'\')
|
||||
;';
|
||||
mysql_query($query);
|
||||
pwg_query($query);
|
||||
|
||||
setcookie('id', $generated_id, $expiration, cookie_path());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue