[startpage] Remove deprecated call to strlen

- Address part of https://github.com/friendica/friendica/issues/12011#issuecomment-1321796513
pull/1319/head
Hypolite Petovan 2022-11-23 13:33:54 -05:00
parent c18e0dc66a
commit f0baf18339
1 changed files with 1 additions and 2 deletions

View File

@ -25,10 +25,9 @@ function startpage_home_init(App $a, $b)
} }
$page = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'startpage', 'startpage'); $page = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'startpage', 'startpage');
if (strlen($page)) { if ($page) {
DI::baseUrl()->redirect($page); DI::baseUrl()->redirect($page);
} }
return;
} }
/** /**