ZF-3530: Login error in example code for ZF Open Id Authentication
Description
Regarding the Zend Framework documentation page at:
http://framework.zend.com/manual/en/…
There is an logic error on line 14 of the code, the following line:
if (!$result-isValid()) {
This line should be:
if ($result-isValid()) {
because the "Success" message is displayed within that block.
Comments
Posted by Dmitry Stogov (dmitry) on 2008-07-15T07:39:08.000+0000
This is a duplicate of ZF-3277, which is already fixed in SVN.