1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00

Merge pull request #515 from mariroz/dev

fix of #509, related to php 5.3
This commit is contained in:
Nicolas Lœuillet 2014-02-27 21:23:10 +01:00
commit affbd83b48

View File

@ -366,7 +366,7 @@ class Poche
// Saving and clearing context
$REAL = array();
foreach( $GLOBALS as $key => $value ) {
if( $key != "GLOBALS" && $key != "_SESSION" ) {
if( $key != 'GLOBALS' && $key != '_SESSION' && $key != 'HTTP_SESSION_VARS' ) {
$GLOBALS[$key] = array();
$REAL[$key] = $value;
}