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

SVN:2.0.2[3215]
This commit is contained in:
Denis Flaven
2014-06-17 11:26:07 +00:00
parent 0e00a6c526
commit 91da1583d2

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)
{