Fix count() error in XMLDisplayHandler

This commit is contained in:
Kijin Sung 2023-08-30 23:28:05 +09:00
parent c8467fb588
commit e5f53429f7

View file

@ -30,9 +30,9 @@ class XMLDisplayHandler
*/
function _makeXmlDoc($obj)
{
if(!count($obj))
if (!countobj($obj))
{
return;
return '';
}
$xmlDoc = '';