SVN:b1162[5411]

This commit is contained in:
Eric Espié
2018-03-13 10:27:08 +00:00
parent 0c8650d2e5
commit 2038785b09
4 changed files with 41 additions and 24 deletions

View File

@@ -1532,10 +1532,21 @@ EOF
$oPage->add(self::GetSearchForm($oPage, $oSet, $aExtraParams));
}
/**
* @param WebPage $oPage
* @param CMDBObjectSet $oSet
* @param array $aExtraParams
*
* @return string
* @throws CoreException
* @throws DictExceptionMissingString
*/
public static function GetSearchForm(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
{
return \Combodo\iTop\Application\Search\SearchForm::GetSearchForm($oPage, $oSet, $aExtraParams);
$oSearchForm = new \Combodo\iTop\Application\Search\SearchForm();
return $oSearchForm->GetSearchForm($oPage, $oSet, $aExtraParams);
}
/**