diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2024-05-14 07:22:47 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-05-14 07:22:47 +0000 |
| commit | 40bdfaf4415ff9f46e63435fc5e61049649802f2 (patch) | |
| tree | f3ae85d9edaef23db555a829571ff968c21f9af5 /lib/functions.php | |
| parent | 636039e25ccc6c33ae758bdb3ddfca4f68327948 (diff) | |
made Stud.IP cache compatible with PSR-6, re #3701
Merge request studip/studip!2570
Diffstat (limited to 'lib/functions.php')
| -rw-r--r-- | lib/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/functions.php b/lib/functions.php index 0e806aa..7d9f4f2 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -636,7 +636,7 @@ function get_users_online($active_time = 5, $name_format = 'full_rev') */ function get_users_online_count($active_time = 10) { - $cache = StudipCacheFactory::getCache(); + $cache = \Studip\Cache\Factory::getCache(); $online_count = $cache->read("online_count/{$active_time}"); if ($online_count === false) { $query = "SELECT COUNT(*) FROM user_online |
