fixed bug with branch/commit detection in select

This commit is contained in:
Dmitriy Zaporozhets 2012-02-20 10:38:03 +02:00
parent 313d96e42b
commit 40ac2ebc21

View file

@ -54,7 +54,7 @@ module ApplicationHelper
# If reference is commit id -
# we should add it to branch/tag selectbox
if(@ref && !options.include?(@ref) &&
if(@ref && !options.flatten.include?(@ref) &&
@ref =~ /^[0-9a-zA-Z]{6,52}$/)
options << ["Commit", [@ref]]
end