This commit is contained in:
Shish
2023-01-11 12:04:48 +00:00
parent f0c6dec798
commit 8e1b371e83
2 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class AdminPage extends Extension
$key = $event->args[1];
switch ($cmd) {
case "get":
var_dump($cache->get($key));
print_r($cache->get($key));
break;
case "set":
$cache->set($key, $event->args[2], 60);