We have a strange issue with the navigation xml, here's a snippet:
...
<registration>
<label>Registration</label>
<module>mine</module>
<controller>registration</controller>
<pages>
<register>
<label>Register</label>
<module>mine</module>
<controller>registration</controller>
<action>doregistration</action>
</register>
</pages>
</registration>
...
Every time we call the /mine/registration/index action, the /mine/registration/doregistration action gets triggered afterwards (when debugging it can take a second or two)
The /mine/registration/index does get displayed correctly.
This problem occurs throughout the whole application. When we change the action of the second (or sub-) page, this particular action is executed.
Is this a known issue in Zend? Has anyone had this problem before?