minor fix for redirect target on checkout view

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2025 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2007-09-10 17:32:22 +00:00
parent aa41efbf37
commit 3a894ab4e5

View file

@ -163,7 +163,8 @@ class CheckoutView(ServiceManagerView):
pass # set state to submitted,
# send mail
# find thank you message and redirect to it
self.request.response.redirect(self.url + '/checkout.html?message=thankyou')
params = '?message=thankyou&id=' + self.clientName
self.request.response.redirect(self.url + '/checkout.html' + params)
return False