This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a change to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git. from 1ed018c Fixed: Remove _PREVIOUS_REQUEST_ Session Attribute on non-authentication pages (OFBIZ-12047) new af7e509 Fixed: Use from-field pattern instead of value=${***} pattern in 'set' element (OFBIZ-9607) new a929846 Fixed: issue put in with r1160964 (9 years, 5 months ago) The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: applications/content/widget/contentsetup/ContentSetupForms.xml | 4 ++-- applications/content/widget/forum/ForumScreens.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) |
This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git commit af7e50973b04084f5d24f42b521ce7c7ecb5bae2 Author: Jacques Le Roux <[hidden email]> AuthorDate: Sat Feb 13 17:55:29 2021 +0100 Fixed: Use from-field pattern instead of value=${***} pattern in 'set' element (OFBIZ-9607) Fixes a syntax issue spotted while testing FreeMarker 2.3.31 --- applications/content/widget/forum/ForumScreens.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/content/widget/forum/ForumScreens.xml b/applications/content/widget/forum/ForumScreens.xml index 23ba20e..f8bef82 100644 --- a/applications/content/widget/forum/ForumScreens.xml +++ b/applications/content/widget/forum/ForumScreens.xml @@ -26,7 +26,7 @@ under the License. <actions> <set field="headerItem" value="Forum"/> <property-map resource="ContentUiLabels" map-name="uiLabelMap" global="true"/> - <set field="pageTitle" from-field="uiLabelMap.[titleProperty]"/> + <set field="pageTitle" from-field="uiLabelMap.${titleProperty}"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
In reply to this post by jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git commit a929846ea20485cdb1c25978a4fa7a2fb65ecd56 Author: Jacques Le Roux <[hidden email]> AuthorDate: Sat Feb 13 18:07:23 2021 +0100 Fixed: issue put in with r1160964 (9 years, 5 months ago) Fixes a syntax issue spotted while testing FreeMarker 2.3.31 --- applications/content/widget/contentsetup/ContentSetupForms.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/content/widget/contentsetup/ContentSetupForms.xml b/applications/content/widget/contentsetup/ContentSetupForms.xml index b3b4db7..355cc84 100644 --- a/applications/content/widget/contentsetup/ContentSetupForms.xml +++ b/applications/content/widget/contentsetup/ContentSetupForms.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd"> <!-- ContentType forms --> <form name="AddContentType" target="addContentType" title="" type="single" @@ -214,7 +214,7 @@ under the License. <form name="UpdateContentPurposeOperation" target="" title="" type="list" list-name="contentList" odd-row-style="alternate-row" header-row-style="header-row-2" default-table-style="basic-table hover-bar"> <actions> - <entity-one entity-name="ContentPurposeOperation" use-cache="false"/> + <entity-condition entity-name="ContentPurposeOperation" use-cache="false"/> </actions> <auto-fields-service service-name="updateContentPurposeOperation" default-field-type="display"/> <field name="deleteLink" title=" " widget-style="buttontext"> |
Free forum by Nabble | Edit this page |