Sample code:

          Zend_Session::start();
          if( Zend_Session::sessionExists() ) {
              echo 'Session exists';       
          }
          else {
              echo 'Session does not exist';   
          }

Will output "Session does not exist" for the FIRST request to the page.
Subsequent calls to the page work fine.

Clearly since the session was started, sessionExists() should return true
even the first time. Right?

Cheers,


Antonio
-- 
View this message in context: 
http://www.nabble.com/Possible-bug-with-sessionExists%28%29---tp17405075p17405075.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to