Commit 937cee72 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Prevent blank menu caption.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1663 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent ad497bdc
......@@ -167,7 +167,9 @@ module Redmine
def caption(project=nil)
if @caption.is_a?(Proc)
@caption.call(project)
c = @caption.call(project).to_s
c = @name.to_s.humanize if c.blank?
c
else
# check if localized string exists on first render (after GLoc strings are loaded)
@caption_key ||= (@caption || (l_has_string?("label_#{@name}".to_sym) ? "label_#{@name}".to_sym : @name.to_s.humanize))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment