tbrehm
2011-02-22 72da9d6d5c03be780863a378f8bec41cd10e7574
Fixed: FS#1523 - Dashboard. Text out of boxes
1 files modified
4 ■■■ changed files
interface/web/dashboard/dashlets/modules.php 4 ●●● patch | view | raw | blame | history
interface/web/dashboard/dashlets/modules.php
@@ -28,7 +28,9 @@
                    include_once('../' . $mt.'/lib/module.conf.php');
                    /* We don't want to show the dashboard */
                    if ($mt != 'dashboard') {
                        $mod[] = array(    'modules_title'     => $app->lng($module['title']),
                        $module_title = $app->lng($module['title']);
                        if(strlen($module_title) > 8) $module_title = substr($module_title,0,7).'..';
                        $mod[] = array(    'modules_title'     => $module_title,
                                'modules_startpage'    => $module['startpage'],
                                'modules_name'      => $module['name']);
                    }