diff roundup/cgi/actions.py @ 3133:708ce3b664d4 maint-0.8

merge from HEAD
author Richard Jones <richard@users.sourceforge.net>
date Sat, 12 Feb 2005 00:59:47 +0000
parents 326ad9da0b75
children 7ca7407133b7
line wrap: on
line diff
--- a/roundup/cgi/actions.py	Sat Feb 12 00:54:36 2005 +0000
+++ b/roundup/cgi/actions.py	Sat Feb 12 00:59:47 2005 +0000
@@ -1,4 +1,4 @@
-#$Id: actions.py,v 1.40.2.2 2005-01-05 22:13:28 richard Exp $
+#$Id: actions.py,v 1.40.2.3 2005-02-12 00:54:36 richard Exp $
 
 import re, cgi, StringIO, urllib, Cookie, time, random
 
@@ -151,7 +151,7 @@
 
             # The [1:] strips off the '?' character, it isn't part of the
             # query string.
-            url = req.indexargs_href('', {})[1:]
+            url = req.indexargs_url('', {})[1:]
 
             key = self.db.query.getkey()
             if key:
@@ -556,7 +556,7 @@
             urllib.quote(self.template))
         if self.nodeid is None:
             req = templating.HTMLRequest(self.client)
-            url += '&' + req.indexargs_href('', {})[1:]
+            url += '&' + req.indexargs_url('', {})[1:]
         raise exceptions.Redirect, url
 
 class NewItemAction(EditCommon):

Roundup Issue Tracker: http://roundup-tracker.org/