diff options
author | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-02-27 18:12:43 +0200 |
---|---|---|
committer | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-02-27 18:12:43 +0200 |
commit | decb9a5814be82effde73f798fbdc0c76c3dd1de (patch) | |
tree | f5ce148d116658128d287c1826dffa9126c2ef8e | |
parent | 36a733af8dee1de5a0f81f1efe70e96a435b6a17 (diff) | |
download | wallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.tar.gz wallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.tar.zst wallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.zip |
fix of #509, related to php 5.3
-rwxr-xr-x | inc/poche/Poche.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index deec4226..e13e7e1b 100755 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -366,7 +366,7 @@ class Poche | |||
366 | // Saving and clearing context | 366 | // Saving and clearing context |
367 | $REAL = array(); | 367 | $REAL = array(); |
368 | foreach( $GLOBALS as $key => $value ) { | 368 | foreach( $GLOBALS as $key => $value ) { |
369 | if( $key != "GLOBALS" && $key != "_SESSION" ) { | 369 | if( $key != 'GLOBALS' && $key != '_SESSION' && $key != 'HTTP_SESSION_VARS' ) { |
370 | $GLOBALS[$key] = array(); | 370 | $GLOBALS[$key] = array(); |
371 | $REAL[$key] = $value; | 371 | $REAL[$key] = $value; |
372 | } | 372 | } |