##// END OF EJS Templates
don't check for url issue links, since we always want to linkify changeset into a repo link, fixes issue...
marcink -
r2956:a2ecf8a5 beta
parent child Browse files
Show More
@@ -1070,10 +1070,9 b' def urlify_commit(text_, repository=None'
1070 log.debug('processed prefix:`%s` => %s' % (pattern_index, newtext))
1070 log.debug('processed prefix:`%s` => %s' % (pattern_index, newtext))
1071
1071
1072 # if we actually did something above
1072 # if we actually did something above
1073 if valid_indices:
1073 if link_:
1074 if link_:
1074 # wrap not links into final link => link_
1075 # wrap not links into final link => link_
1075 newtext = linkify_others(newtext, link_)
1076 newtext = linkify_others(newtext, link_)
1077
1076
1078 return literal(newtext)
1077 return literal(newtext)
1079 except:
1078 except:
General Comments 0
You need to be logged in to leave comments. Login now