Greg Huang created ROL-2147:
-------------------------------
Summary: GlobalConfig.jsp Select tag bind wrong value
Key: ROL-2147
URL: https://issues.apache.org/jira/browse/ROL-2147
Project: Apache Roller
Issue Type: Bug
Components: Installation & Configuration
Affects Versions: 6.0.0
Reporter: Greg Huang
Assignee: Roller Unassigned
In the WEB-INF/jsps/admin/GlobalConfig.jsp file line 43:
{code:java}
// code placeholder
<s:elseif test="#pd.name == 'site.frontpage.weblog.handle'">
<s:select name="%{#pd.name}" label="%{getText(#pd.key)}"
value="%{properties[#pd.name].value}"
list="weblogs" listKey="name" listValueKey="handle"/>
</s:elseif>
{code}
should be:
{code:java}
// code placeholder
<s:elseif test="#pd.name == 'site.frontpage.weblog.handle'">
<s:select name="%{#pd.name}" label="%{getText(#pd.key)}"
value="%{properties[#pd.name].value}"
list="weblogs" listKey="handle" listValueKey="name"/>
</s:elseif>
{code}
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)