Commit f982e899 authored by Casey Duncan's avatar Casey Duncan

Replaced <br>s with \n's in manage_tabs_message values passed over request

parent a0f97a9d
......@@ -252,8 +252,8 @@ class ZCatalog(Folder, Persistent, Implicit):
RESPONSE.redirect(
URL1 +
'/manage_catalogAdvanced?manage_tabs_message=' +
urllib.quote('Catalog Updated<br>'
'Total time: %s<br>'
urllib.quote('Catalog Updated \n'
'Total time: %s\n'
'Total CPU time: %s' % (`elapse`, `c_elapse`)))
......@@ -321,10 +321,12 @@ class ZCatalog(Folder, Persistent, Implicit):
RESPONSE.redirect(
URL1 +
'/manage_catalogView?manage_tabs_message=' +
urllib.quote(
'Catalog Updated<br>Total time: %s<br>Total CPU time: %s' %
(`elapse`, `c_elapse`)))
urllib.quote('Catalog Updated\n'
'Total time: %s\n'
'Total CPU time: %s'
% (`elapse`, `c_elapse`))
)
def manage_addColumn(self, name, REQUEST=None, RESPONSE=None, URL1=None):
""" add a column """
......
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