Bug #30771
closedFix not working backend.php?edit=pid
0%
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.
Updated by Mr. Hudson over 13 years ago
Patch set 1 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Xavier Perseguers over 13 years ago
- Status changed from New to Under Review
Updated by Mr. Hudson over 13 years ago
Patch set 2 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Mr. Hudson over 13 years ago
Patch set 3 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Xavier Perseguers over 13 years ago
- Target version changed from 4.6.0-RC1 to 4.6.0
Updated by Mr. Hudson over 13 years ago
Patch set 4 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Chris topher about 13 years ago
- Target version changed from 4.6.0 to 4.6.1
Updated by Chris topher about 13 years ago
- Target version changed from 4.6.1 to 4.6.2
Updated by Gerrit Code Review about 13 years ago
Patch set 5 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Gerrit Code Review about 13 years ago
Patch set 6 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Xavier Perseguers almost 13 years ago
- Target version deleted (
4.6.2)
Updated by Gerrit Code Review over 12 years ago
Patch set 7 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Gerrit Code Review over 12 years ago
Patch set 8 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711
Updated by Gerrit Code Review almost 12 years ago
Patch set 9 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/5711
Updated by Gerrit Code Review over 11 years ago
Patch set 10 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/5711
Updated by Gerrit Code Review about 11 years ago
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
Updated by Gerrit Code Review about 11 years ago
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
Updated by Wouter Wolters over 10 years ago
- Status changed from Under Review to Closed
- Is Regression set to No
abandoned