I was digging through Zend_Session_* code and i noticed that while
Zend_Session_Abstract defines methods to access the "low level"
data store $_SESSION array, Zend_Session and Zend_Session_Namespace
which inherit from Zend_Session_Abstract use $_SESSION directly as well.
Shouldnt stuff like
if (!isset($_SESSION['__ZF'])) { ...
use Zend_Session_Abstract methods instead? like
if (!parent::_namespaceIsset('__ZF')) { ...Thanks Federico
