-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does my configure run well on the version updated at 9/05/2012, can not run on the others versions updated after 9/05/2012 #98
Comments
The Block menu exists in Mage_Backend. But the configure ablout Block menu in layout.xm are dfferent in the version updated at 9/05/2012 and the version updated after 9/05/2012. The configure ablout Block menu in layout.xm in the version updated at 9/05/2012: [default] The configure ablout Block menu in layout.xm in the version updated after 9/05/2012: [default] |
Hi. Yes - we have changed the navigation schema and now you can validate it and it is easier to extend in custom modules. Is your github issue an error report? Do you have any issues with the new format? |
Thanks a lot. My configure can run well on the version updated at 10/11/2012. |
[Github] Merge public Github commits
Refactor LoginAsCustomer Login Model
…f AttributeMetadataInterface (#98)
In my magento application, there is a configure in layout.xml:
[default]
[reference name="head"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/head.phtml[/template][/action]
[action method="setTitle" translate="title"][title]Backend Admin[/title][/action]
[/reference]
[reference name="menu"]
[action method="setTemplate"][template]SunshineBiz_Permission::menu.phtml[/template][/action]
[/reference]
[reference name="footer"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/footer.phtml[/template][/action]
[/reference]
[/default]
On the version updated at 9/05/2012, it runs well. But it can not run on the version updated at 9/13/2012 and 9/27/2012. It run a long time, and display a blank page. Forthermore, there aren't logs in system.log, no warn, no error, nothing. I have to change the configure by removing the "menu" reference as following:
[default]
[reference name="head"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/head.phtml[/template][/action]
[action method="setTitle" translate="title"][title]Backend Admin[/title][/action]
[/reference]
[reference name="footer"]
[action method="setTemplate"][template]SunshineBiz_Permission::page/footer.phtml[/template][/action]
[/reference]
[/default]
Then it can run. Why is it so? How can I change the menu's template?
Any suggest is welcome!
The text was updated successfully, but these errors were encountered: