diff options
| author | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-10-25 19:03:31 +0000 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-10-25 19:03:31 +0000 |
| commit | f45178e528cbf7aa45f1e1d4e026a12cbde8ef03 (patch) | |
| tree | e9561fa44e38e442ac6aa6379a67ae7286ac9d3f /public | |
| parent | caa0ddefd2875bb307b4e100879393df98035b30 (diff) | |
drop login_info div with stats from start page, fixes #3390
Closes #3390
Merge request studip/studip!2309
Diffstat (limited to 'public')
| -rw-r--r-- | public/index.php | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/public/index.php b/public/index.php index 429a35e..66c69bd 100644 --- a/public/index.php +++ b/public/index.php @@ -95,19 +95,10 @@ foreach ($portalplugins as $portalplugin) { $index_nobody_template = $GLOBALS['template_factory']->open('index_nobody'); -$cache = StudipCacheFactory::getCache(); -$stat = $cache->read('LOGINFORM_STATISTICS'); -if (!is_array($stat)) { - $stat = []; - $stat['num_active_courses'] = Course::countBySQL(); - $stat['num_registered_users'] = User::countBySQL(); - $cache->write('LOGINFORM_STATISTICS', $stat, 3600); -} -$index_nobody_template->set_attributes(array_merge($stat, [ - 'num_online_users' => get_users_online_count(), +$index_nobody_template->set_attributes([ 'plugin_contents' => $plugin_contents, 'logout' => Request::bool('logout'), -])); +]); echo $index_nobody_template->render(); |
