]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
fix of #509, related to php 5.3 515/head
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>
Thu, 27 Feb 2014 16:12:43 +0000 (18:12 +0200)
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>
Thu, 27 Feb 2014 16:12:43 +0000 (18:12 +0200)
inc/poche/Poche.class.php

index deec42267a593de08cd1b65f6c3e8c594770cfe5..e13e7e1b417628264382d9d90df9efee1a7f69fc 100755 (executable)
@@ -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;
             }