mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-24 01:51:01 +00:00
fix of #509, related to php 5.3
This commit is contained in:
parent
36a733af8d
commit
decb9a5814
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@ class Poche
|
||||||
// Saving and clearing context
|
// Saving and clearing context
|
||||||
$REAL = array();
|
$REAL = array();
|
||||||
foreach( $GLOBALS as $key => $value ) {
|
foreach( $GLOBALS as $key => $value ) {
|
||||||
if( $key != "GLOBALS" && $key != "_SESSION" ) {
|
if( $key != 'GLOBALS' && $key != '_SESSION' && $key != 'HTTP_SESSION_VARS' ) {
|
||||||
$GLOBALS[$key] = array();
|
$GLOBALS[$key] = array();
|
||||||
$REAL[$key] = $value;
|
$REAL[$key] = $value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue