You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "Greg Huang (JIRA)" <ji...@apache.org> on 2019/08/12 16:11:00 UTC

[jira] [Commented] (ROL-2147) GlobalConfig.jsp Select tag bind wrong value

    [ https://issues.apache.org/jira/browse/ROL-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16905339#comment-16905339 ] 

Greg Huang commented on ROL-2147:
---------------------------------

I have submit a github [PR|[https://github.com/apache/roller/pull/35]]

> 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 &amp; Configuration
>    Affects Versions: 6.0.0
>            Reporter: Greg Huang
>            Assignee: Roller Unassigned
>            Priority: Major
>
> 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)