Skip to content
Snippets Groups Projects
Commit e2155434 authored by Susanne Moog's avatar Susanne Moog
Browse files

Fixed bug #17208: Backwards compatibility broken (top.nav) and JS errors when...

Fixed bug #17208: Backwards compatibility broken (top.nav) and JS errors when editing files in file list module

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@10247 709f56b5-9817-0410-a4d7-c38de5d9e867
parent bb408b39
No related merge requests found
......@@ -3,6 +3,7 @@
* Fixed bug #17091: Pagetree: undelete recursive deleted pages only undeletes the top node, not the other child nodes of the deleted page (Thanks to Stefan Galinski)
* Fixed bug #17204: Pagetree: Only call the singleClick method if the navigation component is visible (Thanks to Stefan Galinski)
* Fixed bug #17158: Pagetree: now uses [No title] from language file if no title is there (Thanks to Stefan Galinski)
* Fixed bug #17208: Backwards compatibility broken (top.nav) and JS errors when editing files in file list module
 
2011-01-22 Steffen Gebert <steffen@steffen-gebert.de>
 
......
......@@ -284,6 +284,10 @@ TYPO3.ModuleMenu.App = {
}
component.show()
// backwards compatibility
top.nav = component;
TYPO3.Backend.NavigationContainer.show();
this.loadedNavigationComponentId = navigationComponentId;
},
......@@ -343,7 +347,6 @@ Ext.onReady(function() {
// keep backward compatibility
top.list = TYPO3.Backend.ContentContainer;
top.nav = TYPO3.Backend.NavigationContainer.PageTree;
top.list_frame = top.list.getIframe();
top.nav_frame = TYPO3.Backend.NavigationContainer.PageTree;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment