Re: [fw-general] Zend_Filter_Input converting to String

2007-10-22 Thread Eric Alvares
Hi Mathew, Perhaps it is the default HtmlEntities output filter that is causing your issue. If so, then the following should show the expected integer value. var_dump ($input-getUnescaped('field')); Hope this helps. Best regards, Eric - Original Message - From: Mathew Byrne To:

Re: [fw-general] Re: RE : [fw-general] Zend_AUth::getInstance issue

2007-10-03 Thread Eric Alvares
At the time of your Zend_Auth::hasIdentity() call the Auth object must have a reference to the correct Zend_Auth_Storage object (presumably a Zend_Auth_Storage_Session) and this object must be able to access the actual storage. ($_SESSION['Zend_Auth']['storage']) Are you sure this is the

Re: [fw-general] Re: RE : [fw-general] Zend_AUth::getInstance issue

2007-10-03 Thread Eric Alvares
If authentication never happened and the session var was never created, Zend_Auth::hasIdentity() should return false under normal circumstances with a default configuration... - Original Message - From: Juan Felipe Alavarez Saldarriaga [EMAIL PROTECTED] To: Eric Alvares [EMAIL

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-10-01 Thread Eric Alvares
Hi Darby, Thanks for looking into this. I do have a question, still. Does the 6556 fix take into account string values for the profiler? This happens when the profiler was set up by passing the db factory a Zend_Config_Ini/Xml. As a result an array with the string value 'true' for the

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-10-01 Thread Eric Alvares
Oops, I see now that Darby has got it covered for the string 'true'. I apologies for having been too lazy to read. Regards, Eric - Original Message - From: Eric Alvares [EMAIL PROTECTED] To: fw-general@lists.zend.com Sent: Monday, October 01, 2007 11:43 PM Subject: Re: [fw-general

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-09-27 Thread Eric Alvares
Changeset 6172 seems to have introduced a BC-break in Zend_Db_Adapter_Abstract, no longer allowing for the passing of simple true or false profiler values with a Zend_Config. The old implementation would retrieve the profiler option from the object and cast the string to a boolean. The new