1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 23:00:51 +03:00

fix for PHP 5.3

This commit is contained in:
Mzhelskiy Maxim 2014-10-08 10:52:25 +07:00
parent fe26c949be
commit f52202a3ef

View file

@ -33,7 +33,8 @@ class BlockUserfeedUsers extends Block {
/**
* Получаем необходимые переменные и прогружаем в шаблон
*/
$this->Viewer_Assign('users', $this->Userfeed_getUserSubscribes($oUserCurrent->getId())['users']);
$aResult=$this->Userfeed_getUserSubscribes($oUserCurrent->getId());
$this->Viewer_Assign('users', $aResult['users']);
}
}
}