Commit 5c2a9ff7 authored by Vincent Sherwood's avatar Vincent Sherwood

Fix the issue where the decoder code for Search mistakenly assigns the element...

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
parent 119acfdc
......@@ -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