mirror of
https://github.com/apache/struts.git
synced 2026-08-07 15:46:57 +00:00
Drops pre-evaluation of name
This commit is contained in:
@@ -649,7 +649,6 @@ public abstract class UIBean extends Component {
|
||||
addParameter("themeExpansionToken", uiThemeExpansionToken);
|
||||
addParameter("expandTheme", uiThemeExpansionToken + theme);
|
||||
|
||||
String name = null;
|
||||
String providedLabel = null;
|
||||
|
||||
if (this.key != null) {
|
||||
@@ -666,8 +665,7 @@ public abstract class UIBean extends Component {
|
||||
}
|
||||
|
||||
if (this.name != null) {
|
||||
name = findString(this.name);
|
||||
addParameter("name", name);
|
||||
addParameter("name", findString(this.name));
|
||||
}
|
||||
|
||||
if (label != null) {
|
||||
|
||||
Reference in New Issue
Block a user