Florian Schaal
2016-04-22 e7ae4ef2c82ec1d22fec6ae4f0dbdc8e6afd73e9
interface/web/dashboard/dashboard.php
@@ -146,7 +146,7 @@
$dashlet_list = array();
$handle = @opendir(ISPC_WEB_PATH.'/dashboard/dashlets');
while ($file = @readdir($handle)) {
   if ($file != '.' && $file != '..' && !is_dir($file)) {
   if ($file != '.' && $file != '..' && !is_dir(ISPC_WEB_PATH.'/dashboard/dashlets/'.$file)) {
      $dashlet_name = substr($file, 0, -4);
      $dashlet_class = 'dashlet_'.$dashlet_name;
      include_once ISPC_WEB_PATH.'/dashboard/dashlets/'.$file;