Merged BRANCHES/DEV/V4.1-BUG-FIX to HEAD:

42783: ALF-16093: Implement new getPeople CQ (eg. if using user admin console and/or Solr unavailable)


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@42785 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2012-10-18 09:22:12 +00:00
parent 46f9f8c24e
commit 9a751f03ae

View File

@@ -30,13 +30,13 @@
<if test="prop1qnameId != null">
and
(
prop1.string_value like #{pattern} <include refid="alfresco.util.escape"/>
lower(prop1.string_value) like lower(#{pattern}) <include refid="alfresco.util.escape"/>
</if>
<if test="prop2qnameId != null">
or prop2.string_value like #{pattern} <include refid="alfresco.util.escape"/>
or lower(prop2.string_value) like lower(#{pattern}) <include refid="alfresco.util.escape"/>
</if>
<if test="prop3qnameId != null">
or prop3.string_value like #{pattern} <include refid="alfresco.util.escape"/>
or lower(prop3.string_value) like lower(#{pattern}) <include refid="alfresco.util.escape"/>
</if>
<if test="prop1qnameId != null">
)