diff options
author | patdenice <patdenice@piwigo.org> | 2008-11-22 23:34:58 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-11-22 23:34:58 +0000 |
commit | a1e6ae0f159e9cae29683078e358e10d7675badd (patch) | |
tree | 53ff5832b9d3d4176f9f748ebc4a24696d3b76dc /include | |
parent | b75ddb8e9adaaedc3b451ff1e7a502537e445655 (diff) |
merge -c2900 from trunk to branch 2.0.
- Bug fixed: username or password with accented character are now accepted for upgrade.
- Simplify query in pwg_session_write function.
- Retrieve data with cURL method in fetchRemote function now work with forwarded URL.
git-svn-id: http://piwigo.org/svn/branches/2.0@2901 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_session.inc.php | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/functions_session.inc.php b/include/functions_session.inc.php index 728fc8fba..dd3e1b24c 100644 --- a/include/functions_session.inc.php +++ b/include/functions_session.inc.php @@ -131,18 +131,7 @@ SELECT data function pwg_session_write($session_id, $data) { $query = ' -UPDATE '.SESSIONS_TABLE.' - SET expiration = now(), - data = \''.$data.'\' - WHERE id = \''.get_remote_addr_session_hash().$session_id.'\' -;'; - pwg_query($query); - if ( mysql_affected_rows()>0 ) - { - return true; - } - $query = ' -INSERT INTO '.SESSIONS_TABLE.' +REPLACE INTO '.SESSIONS_TABLE.' (id,data,expiration) VALUES(\''.get_remote_addr_session_hash().$session_id.'\',\''.$data.'\',now()) ;'; |