#943: Fix for supporting drop-down lists/auto-completes based on a parametrized query in the portal.

SVN:trunk[3199]
This commit is contained in:
Denis Flaven
2014-06-06 09:43:20 +00:00
parent 67ef671632
commit 9b5fc043cb

View File

@@ -480,7 +480,9 @@ EOF
{
try
{
$oAllowedValues = new DBObjectSet(DBObjectSearch::FromOQL(constant($sFilterDefName)), array(), $aFilterParams);
$oFitlerWithParams = DBObjectSearch::FromOQL(constant($sFilterDefName));
$sFilterOQL = $oFitlerWithParams->ToOQL(true, $aFilterParams);
$oAllowedValues = new DBObjectSet(DBObjectSearch::FromOQL($sFilterOQL), array(), $aFilterParams);
}
catch(OQLException $e)
{