##// END OF EJS Templates
Removes a useless assignment in Trac importer (#4931)....
Jean-Philippe Lang -
r3380:c7c43d38cef9
parent child
Show More
@@ -310,7 +310,7 namespace :redmine do
310 310 # Ticket number re-writing
311 311 text = text.gsub(/#(\d+)/) do |s|
312 312 if $1.length < 10
313 TICKET_MAP[$1.to_i] ||= $1
313 # TICKET_MAP[$1.to_i] ||= $1
314 314 "\##{TICKET_MAP[$1.to_i] || $1}"
315 315 else
316 316 s
General Comments 0
You need to be logged in to leave comments. Login now