diff --git a/lib/classes/setup.class.php b/lib/classes/setup.class.php index a35f90b03f..750ea17ff7 100644 --- a/lib/classes/setup.class.php +++ b/lib/classes/setup.class.php @@ -607,18 +607,16 @@ class setup if ($Core->getCache()->isServer()) { $stats = $Core->getCache()->getStats(); - + + echo '
  • ' . sprintf(_('setup::Serveur actif sur %s'), $registry->get('GV_cache_server_host') . ':' . $registry->get('GV_cache_server_port')) . '
  • '; + echo ""; + foreach ($stats as $name => $stat) { - echo '
  • Statistics given by `' . $name . '`
  • '; - echo '
  • ' . sprintf(_('setup::Serveur actif sur %s'), $registry->get('GV_cache_server_host') . ':' . $registry->get('GV_cache_server_port')) . '
  • '; - echo "
    "; - foreach ($stat as $key => $value) - { - echo ""; - } - echo "
    " . $key . " " . $value . "
    "; + echo "" . $name . " " . $stat . ""; } + + echo ""; } else {