Commit 2e1291ac authored by Ivan Tyagov's avatar Ivan Tyagov

Do not open tabs in another browser window (bug #393).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@12674 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5d70a9ba
...@@ -1371,7 +1371,7 @@ class Catalog( Folder, ...@@ -1371,7 +1371,7 @@ class Catalog( Folder,
# We will check if there is an filter on this # We will check if there is an filter on this
# method, if so we may not call this zsqlMethod # method, if so we may not call this zsqlMethod
# for this object # for this object
portal_type = object.getPortalType() portal_type = object.getPortalType()
if type_list and portal_type not in type_list: if type_list and portal_type not in type_list:
continue continue
elif expression is not None: elif expression is not None:
......
...@@ -84,7 +84,6 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -84,7 +84,6 @@ class ZCatalog(Folder, Persistent, Implicit):
'help': ('OFSP','ObjectManager_Contents.stx')}, 'help': ('OFSP','ObjectManager_Contents.stx')},
{'label': 'Catalog', # TAB: Cataloged Objects {'label': 'Catalog', # TAB: Cataloged Objects
'action': 'manage_catalogView', 'action': 'manage_catalogView',
'target': 'manage_main',
'help':('ZCatalog','ZCatalog_Cataloged-Objects.stx')}, 'help':('ZCatalog','ZCatalog_Cataloged-Objects.stx')},
{'label' : 'Filter', # TAB: Filter {'label' : 'Filter', # TAB: Filter
'action' : 'manage_catalogFilter' }, 'action' : 'manage_catalogFilter' },
...@@ -93,15 +92,13 @@ class ZCatalog(Folder, Persistent, Implicit): ...@@ -93,15 +92,13 @@ class ZCatalog(Folder, Persistent, Implicit):
'help': ('OFSP','Properties.stx')}, 'help': ('OFSP','Properties.stx')},
{'label': 'Find Objects', # TAB: Find Objects {'label': 'Find Objects', # TAB: Find Objects
'action': 'manage_catalogFind', 'action': 'manage_catalogFind',
'target':'manage_main',
'help':('ZCatalog','ZCatalog_Find-Items-to-ZCatalog.stx')}, 'help':('ZCatalog','ZCatalog_Find-Items-to-ZCatalog.stx')},
{'label': 'Advanced', # TAB: Advanced {'label': 'Advanced', # TAB: Advanced
'action': 'manage_catalogAdvanced', 'action': 'manage_catalogAdvanced',
'target':'manage_main',
'help':('ZCatalog','ZCatalog_Advanced.stx')}, 'help':('ZCatalog','ZCatalog_Advanced.stx')},
{'label': 'Hot Reindexing', # TAB: Hot Reindex {'label': 'Hot Reindexing', # TAB: Hot Reindex
'action': 'manage_catalogHotReindexing', 'action': 'manage_catalogHotReindexing',
'target':'manage_main', }, },
{'label': 'Undo', # TAB: Undo {'label': 'Undo', # TAB: Undo
'action': 'manage_UndoForm', 'action': 'manage_UndoForm',
'help': ('OFSP','Undo.stx')}, 'help': ('OFSP','Undo.stx')},
......
Markdown is supported
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