#830 (continuation: suppressed the notice "array to string conversion"

SVN:trunk[2998]
This commit is contained in:
Romain Quetiez
2013-11-27 09:20:16 +00:00
parent 4a849ee4db
commit 258b4be167

View File

@@ -317,8 +317,9 @@ EOF
if ( ($oCurrObject != null) && ($this->sAttCode != ''))
{
$oAttDef = MetaModel::GetAttributeDef(get_class($oCurrObject), $this->sAttCode);
$aParams = array('query_params' => array('this' => $oCurrObject));
$oSet = $oAttDef->GetAllowedValuesAsObjectSet($aParams);
$aArgs = array('this' => $oCurrObject);
$aParams = array('query_params' => $aArgs);
$oSet = $oAttDef->GetAllowedValuesAsObjectSet($aArgs);
$oFilter = $oSet->GetFilter();
}
else