aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-02-27 18:12:43 +0200
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-02-27 18:12:43 +0200
commitdecb9a5814be82effde73f798fbdc0c76c3dd1de (patch)
treef5ce148d116658128d287c1826dffa9126c2ef8e /inc/poche/Poche.class.php
parent36a733af8dee1de5a0f81f1efe70e96a435b6a17 (diff)
downloadwallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.tar.gz
wallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.tar.zst
wallabag-decb9a5814be82effde73f798fbdc0c76c3dd1de.zip
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 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 }