Project

General

Profile

Actions

Bug #30771

closed

Fix not working backend.php?edit=pid

Added by Kay Strobach over 12 years ago. Updated almost 10 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
-
Target version:
-
Start date:
2011-10-11
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.6
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

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.


Related issues 2 (0 open2 closed)

Follows TYPO3 Core - Bug #28951: modulemenu.js: Showmodule can be called before Store is loadedClosedOliver Hader2011-08-12

Actions
Precedes TYPO3 Core - Bug #30773: select correct page in pagetree if using ?edit=pid in backendClosed2011-10-122011-10-12

Actions
Actions #1

Updated by Mr. Hudson over 12 years ago

Patch set 1 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #2

Updated by Xavier Perseguers over 12 years ago

  • Status changed from New to Under Review
Actions #3

Updated by Mr. Hudson over 12 years ago

Patch set 2 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #4

Updated by Mr. Hudson over 12 years ago

Patch set 3 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #5

Updated by Xavier Perseguers over 12 years ago

  • Target version changed from 4.6.0-RC1 to 4.6.0
Actions #6

Updated by Mr. Hudson over 12 years ago

Patch set 4 of change Iaf2a9896743e97249adfb0f969c0db6a0d5e0617 has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #7

Updated by Chris topher over 12 years ago

  • Target version changed from 4.6.0 to 4.6.1
Actions #8

Updated by Chris topher over 12 years ago

  • Target version changed from 4.6.1 to 4.6.2
Actions #9

Updated by Gerrit Code Review over 12 years ago

Patch set 5 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #10

Updated by Gerrit Code Review over 12 years ago

Patch set 6 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #11

Updated by Xavier Perseguers about 12 years ago

  • Target version deleted (4.6.2)
Actions #12

Updated by Gerrit Code Review over 11 years ago

Patch set 7 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #13

Updated by Gerrit Code Review over 11 years ago

Patch set 8 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/5711

Actions #14

Updated by Gerrit Code Review about 11 years ago

Patch set 9 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/5711

Actions #15

Updated by Gerrit Code Review over 10 years ago

Patch set 10 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/5711

Actions #16

Updated by Gerrit Code Review over 10 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

Actions #17

Updated by Gerrit Code Review over 10 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

Actions #18

Updated by Wouter Wolters almost 10 years ago

  • Status changed from Under Review to Closed
  • Is Regression set to No

abandoned

Actions

Also available in: Atom PDF