Bug #30771
closed
Fix not working backend.php?edit=pid
Added by Kay Strobach over 13 years ago.
Updated almost 11 years ago.
Description
Example: Using the direct page edit feature (backend.php?edit=xxx) the BE responds with "Module loader
No module found. If this is a temporary error, please reload the Backend!" error. I found that the ajax loading of modules in modulemenu.js took almost 1 second on this particular installation and therefore showModule was called before the modules had finished loading.
I introduced the following hack in showModule after which the BE successfully could load the page edit module:
showModule: function(mod, params) {
if(TYPO3.ModuleMenu.Store.getCount() == 0){
setTimeout("top.TYPO3.ModuleMenu.App.showModule('"+mod+"', '"+params+"')", 1000);
return;
}
A better approach would probably be to make the modulemenu block until it had completed it's initialization.
Patch set 1 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
- Status changed from New to Under Review
Patch set 2 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
Patch set 3 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
- Target version changed from 4.6.0-RC1 to 4.6.0
Patch set 4 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
- Target version changed from 4.6.0 to 4.6.1
- Target version changed from 4.6.1 to 4.6.2
- Target version deleted (
4.6.2)
Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/5711
Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/5711
- Status changed from Under Review to Closed
- Is Regression set to No
Also available in: Atom
PDF