diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-27 21:23:10 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-27 21:23:10 +0100 |
commit | affbd83b485398a2141839b19b592d316d12d1a9 (patch) | |
tree | 6765a5e424f6130e9a9952ae49108f3c4ea85c66 /inc | |
parent | 381d182726132b55a24644634b965bb0ccd7830a (diff) | |
parent | decb9a5814be82effde73f798fbdc0c76c3dd1de (diff) | |
download | wallabag-affbd83b485398a2141839b19b592d316d12d1a9.tar.gz wallabag-affbd83b485398a2141839b19b592d316d12d1a9.tar.zst wallabag-affbd83b485398a2141839b19b592d316d12d1a9.zip |
Merge pull request #515 from mariroz/dev
fix of #509, related to php 5.3
Diffstat (limited to 'inc')
-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 87c00b78..4100f156 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 | } |