Skip to content

Commit ea0b857

Browse files
committed
Fix collision link to open in new window: target should be _blank not new.
1 parent d574ad0 commit ea0b857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/cgi/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def detectCollision(self, user_activity, node_activity):
777777

778778
def handleCollision(self, props):
779779
message = self._('Edit Error: someone else has edited this %s (%s). '
780-
'View <a target="new" href="%s%s">their changes</a> '
780+
'View <a target="_blank" href="%s%s">their changes</a> '
781781
'in a new window.')%(self.classname, ', '.join(props),
782782
self.classname, self.nodeid)
783783
self.client.add_error_message(message, escape=False)

0 commit comments

Comments
 (0)