Commit 2776d1df authored by Chris McDonough's avatar Chris McDonough

Changed index_html method to use REQUEST instead of URL1.

parent 84822e3a
......@@ -85,8 +85,8 @@
__doc__='''Generic Database adapter
$Id: DA.py,v 1.95 2001/01/12 16:47:25 chrism Exp $'''
__version__='$Revision: 1.95 $'[11:-2]
$Id: DA.py,v 1.96 2001/01/12 17:50:32 chrism Exp $'''
__version__='$Revision: 1.96 $'[11:-2]
import OFS.SimpleItem, Aqueduct, RDB, re
import DocumentTemplate, marshal, md5, base64, Acquisition, os
......@@ -400,9 +400,9 @@ class DA(
finally: tb=None
def index_html(self, URL1):
" "
raise 'Redirect', ("%s/manage_testForm" % URL1)
def index_html(self, REQUEST):
""" """
REQUEST.RESPONSE.redirect("%s/manage_testForm" % REQUEST['URL1'])
def _searchable_arguments(self): return self._arg
......
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