Commit bca014d5 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #5 in ZP/z-push from bugfix/ZP-639-search-equalto-setting-wrong-value to develop

ZP-639 #comment EqualTo is not correctly set

* commit '5c2a9ff7':
  Fix the issue where the decoder code for Search mistakenly assigns the element SYNC_SEARCH_VALUE for search type SYNC_SEARCH_EQUALTO into the ContentParameters object as SearchValueLess instead of SearchValueEqualTo
parents 23ac1fd3 5c2a9ff7
......@@ -179,7 +179,7 @@ class Search extends RequestProcessor {
if(self::$decoder->getElementStartTag(SYNC_SEARCH_VALUE)) {
$searchvalue = self::$decoder->getElementContent();
$cpo->SetSearchValueLess($searchvalue);
$cpo->SetSearchValueEqualTo($searchvalue);
if(!self::$decoder->getElementEndTag()) // SYNC_SEARCH_VALUE
return false;
}
......
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