Merge pull request #2897 from rabuzarus/07.11-fix_login

ref_session_write: fix update for entry in the session table
Este commit está contenido en:
Michael Vogel 2016-11-07 22:59:27 +01:00 cometido por GitHub
commit d33eeee336
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -73,7 +73,7 @@ function ref_session_write($id, $data) {
$r = q("UPDATE `session`
SET `data` = '%s', `expire` = '%s'
WHERE `sid` = '%s'
AND (`data` != '%s' OR `expire` != '%s'",
AND (`data` != '%s' OR `expire` != '%s')",
dbesc($data), dbesc($expire), dbesc($id), dbesc($data), dbesc($expire));
} else {
$r = q("INSERT INTO `session`