fixed the wrong use of the local variable style

This commit is contained in:
Keiji Suzuki
2013-07-12 11:21:58 +09:00
parent 7519d68e9d
commit a788856c57

View File

@@ -472,7 +472,7 @@ public class ItemTag extends TagSupport
try
{
label = I18nUtil.getMessage("metadata."
+ (style != null ? style + "." : "") + field,
+ ("default".equals(this.style) ? "" : this.style + ".") + field,
context);
}
catch (MissingResourceException e)