aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-27 21:23:10 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-27 21:23:10 +0100
commitaffbd83b485398a2141839b19b592d316d12d1a9 (patch)
tree6765a5e424f6130e9a9952ae49108f3c4ea85c66 /inc/poche/Poche.class.php
parent381d182726132b55a24644634b965bb0ccd7830a (diff)
parentdecb9a5814be82effde73f798fbdc0c76c3dd1de (diff)
downloadwallabag-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/poche/Poche.class.php')
-rwxr-xr-xinc/poche/Poche.class.php2
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 }