use dotclear methods

This commit is contained in:
Jean-Christian Paul Denis 2022-12-23 10:32:20 +01:00
parent f5442e1eb2
commit 500eb83523
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -117,10 +117,7 @@ class topWriterWidget
public static function topCom($w) public static function topCom($w)
{ {
if ($w->offline if ($w->offline || !$w->checkHomeOnly(dcCore::app()->url->type)) {
|| ($w->homeonly == 1 && !dcCore::app()->url->isHome(dcCore::app()->url->type))
|| ($w->homeonly == 2 && dcCore::app()->url->isHome(dcCore::app()->url->type))
) {
return null; return null;
} }
@ -140,10 +137,7 @@ class topWriterWidget
public static function topPost($w) public static function topPost($w)
{ {
if ($w->offline if ($w->offline || !$w->checkHomeOnly(dcCore::app()->url->type)) {
|| ($w->homeonly == 1 && !dcCore::app()->url->isHome(dcCore::app()->url->type))
|| ($w->homeonly == 2 && dcCore::app()->url->isHome(dcCore::app()->url->type))
) {
return null; return null;
} }