diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-30 14:28:02 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-05-30 14:28:02 +0000 |
| commit | 4ce0c92b675da5d30bab11464ae51b7bd9b51a1a (patch) | |
| tree | 779bc9aecfcba3a1f689ce7183c7fdf11d34eeda /frontends/php/include/html.inc.php | |
| parent | ad6aaa69a6052c4224b65fd63a999223979a546f (diff) | |
| download | zabbix-4ce0c92b675da5d30bab11464ae51b7bd9b51a1a.tar.gz zabbix-4ce0c92b675da5d30bab11464ae51b7bd9b51a1a.tar.xz zabbix-4ce0c92b675da5d30bab11464ae51b7bd9b51a1a.zip | |
- added login/logout (Artem)
- changed how is showed messages (Artem)
- splited css files
git-svn-id: svn://svn.zabbix.com/trunk@4212 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/html.inc.php')
| -rw-r--r-- | frontends/php/include/html.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php index bd497c36..46c1d137 100644 --- a/frontends/php/include/html.inc.php +++ b/frontends/php/include/html.inc.php @@ -19,7 +19,7 @@ **/ ?> <?php - function bold($str) + function bold($str) { if(is_array($str)){ foreach($str as $key => $val) @@ -31,7 +31,7 @@ return $str; } - function bfirst($str) // mark first symbol of string as bold + function bfirst($str) // mark first symbol of string as bold { $res = bold($str[0]); for($i=1,$max=strlen($str); $i<$max; $i++) $res .= $str[$i]; @@ -39,7 +39,7 @@ return $str; } - function nbsp($str) + function nbsp($str) { return str_replace(" ",SPACE,$str);; } |
