summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/config.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-01 12:02:22 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-01 12:02:22 +0000
commiteebf8121ea8f616317d67f04bf577e4c5bdca0d1 (patch)
treef1ad35fa41d124eea270a1056c0ad8246680a71c /frontends/php/include/config.inc.php
parent1d0d7ac11023dd1eccac147f9e1b2abf41d95334 (diff)
downloadzabbix-eebf8121ea8f616317d67f04bf577e4c5bdca0d1.tar.gz
zabbix-eebf8121ea8f616317d67f04bf577e4c5bdca0d1.tar.xz
zabbix-eebf8121ea8f616317d67f04bf577e4c5bdca0d1.zip
- added availability to export/import templates for hosts (Artem)
- added permissions for hosts on import (Artem) git-svn-id: svn://svn.zabbix.com/trunk@4220 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/config.inc.php')
-rw-r--r--frontends/php/include/config.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php
index d808aacd..100504b4 100644
--- a/frontends/php/include/config.inc.php
+++ b/frontends/php/include/config.inc.php
@@ -682,8 +682,8 @@ else
if($msg_count > $msg_show) $msg_count = $msg_show;
- $msg_count = ($msg_count * $msg_font_size *2);
- $lst_error->AddOption('style',' font-size: '.$msg_font_size.'pt; height: '.$msg_count.';');
+ $msg_count = ($msg_count * $msg_font_size *2) + 2;
+ $lst_error->AddOption('style','font-size: '.$msg_font_size.'pt; height: '.$msg_count.';');
//---
$lst_error->Show();