##// END OF EJS Templates
scm: mercurial: wrap identifier with shell_quote at hgrev(identifier)....
Toshi MARUYAMA -
r4546:ed246cef41b1
parent child
Show More
@@ -212,7 +212,7 module Redmine
212 212
213 213 # Returns correct revision identifier
214 214 def hgrev(identifier)
215 identifier.blank? ? 'tip' : identifier.to_s
215 shell_quote(identifier.blank? ? 'tip' : identifier.to_s)
216 216 end
217 217 private :hgrev
218 218 end
General Comments 0
You need to be logged in to leave comments. Login now