Fix cookie handling in Context class

This commit is contained in:
Kijin Sung 2016-01-12 18:17:18 +09:00
parent 819562ffd1
commit 8b8d32c9dd

View file

@ -228,7 +228,7 @@ class Context
// set context variables in $GLOBALS (backward compatibility)
$GLOBALS['__Context__'] &= $this;
$GLOBALS['lang'] &= $this->lang;
$this->_COOKIE &= $_COOKIE;
$this->_COOKIE = $_COOKIE;
// 20140429 editor/image_link
$this->_checkGlobalVars();