diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index a225b29..74cf0f2 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -893,9 +893,13 @@ function get_disk_info() { echo "</tr>\n<tr>\n"; foreach ($tab_array as $ta) { if($ta[1] == true) { - echo " <td bgcolor='#EEEEEE'><B> {$ta[0]} <br> </div></a></td>\n"; + echo " <td bgcolor='#EEEEEE'><B> {$ta[0]}"; + echo " "; + echo "<font size='-12'><br> </div></td>\n"; } else { - echo " <td bgcolor='#777777'><B> <a href='{$ta[2]}'><font color='white'>{$ta[0]}</a> <br> </div></td>\n"; + echo " <td bgcolor='#777777'><B> <a href='{$ta[2]}'>"; + echo "<font color='white'>{$ta[0]}</a> "; + echo "<font size='-12'><br> </div></td>\n"; } } echo " </tr>\n"; |