Commit 9bebeb24 authored by Jim Fulton's avatar Jim Fulton

Fixed bug in manage_help.

parent b36d7115
...@@ -85,9 +85,9 @@ ...@@ -85,9 +85,9 @@
"""Standard management interface support """Standard management interface support
$Id: Management.py,v 1.22 1999/05/11 19:46:39 brian Exp $""" $Id: Management.py,v 1.23 1999/05/24 19:14:27 jim Exp $"""
__version__='$Revision: 1.22 $'[11:-2] __version__='$Revision: 1.23 $'[11:-2]
import sys, Globals, ExtensionClass import sys, Globals, ExtensionClass
from Dialogs import MessageDialog from Dialogs import MessageDialog
...@@ -106,7 +106,7 @@ class Tabs(ExtensionClass.Base): ...@@ -106,7 +106,7 @@ class Tabs(ExtensionClass.Base):
def manage_help(self, RESPONSE, SCRIPT_NAME): def manage_help(self, RESPONSE, SCRIPT_NAME):
"Help!" "Help!"
RESPONSE.redirect(SCRIPT_NAME+'HelpSys/hs_index') RESPONSE.redirect(SCRIPT_NAME+'/HelpSys/hs_index')
return '' return ''
manage_options =() manage_options =()
...@@ -115,7 +115,8 @@ class Tabs(ExtensionClass.Base): ...@@ -115,7 +115,8 @@ class Tabs(ExtensionClass.Base):
def filtered_manage_options( def filtered_manage_options(
self, REQUEST=None, self, REQUEST=None,
help_option_=({'label': 'Help', 'action': 'manage_help'},), help_option_=({'label': 'Help', 'action': 'manage_help',
},),
): ):
if REQUEST is None: if REQUEST is None:
if hasattr(self, 'REQUEST'): if hasattr(self, 'REQUEST'):
......
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