From a5fea74a1683b5724fe298fff88ca0266036939b Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz <twoln@umk.pl> Date: Fri, 2 Jun 2023 11:38:59 +0200 Subject: [PATCH] removed extra argument in getEntityList call --- page-logic/whatsnew.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/page-logic/whatsnew.php b/page-logic/whatsnew.php index 250cade..a25f68c 100644 --- a/page-logic/whatsnew.php +++ b/page-logic/whatsnew.php @@ -23,6 +23,6 @@ $addEvents = [ $data['backTimeFed'] = $backTimeFed; $data['backTimeEntities'] = $backTimeEntities; $data['events'] = $edugain->getFederationNews($startYearTimestamp, $addEvents); -$data['entityListIDP'] = $entity->getEntityList(Constants::IDP,'0', -2, 1, 1, 'NOTSET', '', 0, 0,0, 0, 0, 0, $startTimestamp , 0, 'html'); -$data['entityListSP'] = $entity->getEntityList(Constants::SP,'0', -2, 1, 1, 'NOTSET', '', 0, 0,0, 0, 0, 0, $startTimestamp , 0, 'html'); +$data['entityListIDP'] = $entity->getEntityList(Constants::IDP,'0', -2, 1, 1, 'NOTSET', '', 0, 0, 0, 0, 0, $startTimestamp , 0, 'html'); +$data['entityListSP'] = $entity->getEntityList(Constants::SP,'0', -2, 1, 1, 'NOTSET', '', 0, 0, 0, 0, 0, $startTimestamp , 0, 'html'); echo $twig->render('whatsnew.html', $data); -- GitLab