Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 5322:875605281b02
Fix collision link to open in new window: target should be _blank not new.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 12 May 2018 21:28:02 -0400 |
| parents | 62de601bdf6f |
| children | ed6153d3ee6a |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Tue Apr 24 08:58:28 2018 +0200 +++ b/roundup/cgi/actions.py Sat May 12 21:28:02 2018 -0400 @@ -777,7 +777,7 @@ def handleCollision(self, props): message = self._('Edit Error: someone else has edited this %s (%s). ' - 'View <a target="new" href="%s%s">their changes</a> ' + 'View <a target="_blank" href="%s%s">their changes</a> ' 'in a new window.')%(self.classname, ', '.join(props), self.classname, self.nodeid) self.client.add_error_message(message, escape=False)
