Commit d3851388 authored by Łukasz Nowak's avatar Łukasz Nowak

Simply index words, as boolean search can be used.

parent f70e1e32
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
\n \n
software_product = context.getFollowUpValue(portal_type=\'Software Product\')\n software_product = context.getFollowUpValue(portal_type=\'Software Product\')\n
if software_product:\n if software_product:\n
r = \'p:\' + software_product.getProductLineTitle() + \' \' + software_product.getDescription() + software_product.getTitle()\n r = software_product.getProductLineTitle() + \' \' + software_product.getDescription() + software_product.getTitle()\n
return r\n return r\n
</string> </value> </string> </value>
</item> </item>
......
91 92
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment