diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index bf68a67..0854fd5 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -625,7 +625,7 @@ module ApplicationHelper def search_page_title(title, options={}) title = "

" + title + "

" title += "

" + _("Searched for '%s'") % options[:query] + "

" if !options[:query].blank? - title += "

" + _("In category %s") % options[:category] + "

" if !options[:category].blank? + title += "

" + _("In category %s") % options[:category].name + "

" if !options[:category].blank? title += "

" + _("within %d from %s") % [options[:distance], options[:region]] + "

" if !options[:distance].blank? && !options[:region].blank? title += "

" + _("%d results found") % options[:total_results] + "

" if !options[:total_results].blank? title -- libgit2 0.21.2