Skip to content

Commit 896954d

Browse files
committed
fix bug in wiki services missing function call
1 parent 8458828 commit 896954d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

framework/service/org/moqui/impl/WikiServices.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ along with this software (see the LICENSE.md file). If not, see
167167

168168
<if condition="extraPathNameList">
169169
<set field="wikiSpaceId" from="wikiSpaceId ?: extraPathNameList[0]"/>
170-
<if condition="!pagePath &amp;&amp; extraPathNameList.size > 1">
171-
<iterate list="extraPathNameList[1..extraPathNameList.size-1]" entry="pathName">
170+
<if condition="!pagePath &amp;&amp; extraPathNameList.size() > 1">
171+
<iterate list="extraPathNameList[1..extraPathNameList.size()-1]" entry="pathName">
172172
<if condition="pagePath"><set field="pagePath" from="pagePath + '/'"/></if>
173173
<set field="pagePath" from="(pagePath?:'') + pathName"/>
174174
</iterate>

0 commit comments

Comments
 (0)