diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-06-20 08:42:25 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-06-20 08:42:25 +0000 |
| commit | 3f8cf5f0da75fa8312c173e9e2c1e1e843811091 (patch) | |
| tree | 1cb9f4841cb20bc2fd65a696181e70cbdf2cfb88 /frontends/php/include/html.inc.php | |
| parent | 2804bdc7c298f114802a93d7c3312370c8602ba0 (diff) | |
| download | zabbix-3f8cf5f0da75fa8312c173e9e2c1e1e843811091.tar.gz zabbix-3f8cf5f0da75fa8312c173e9e2c1e1e843811091.tar.xz zabbix-3f8cf5f0da75fa8312c173e9e2c1e1e843811091.zip | |
- [DEV-137] changes in users profile system (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5782 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/html.inc.php')
| -rw-r--r-- | frontends/php/include/html.inc.php | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php index 5771e868..db6d95f4 100644 --- a/frontends/php/include/html.inc.php +++ b/frontends/php/include/html.inc.php @@ -36,33 +36,28 @@ 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]; $str = $res; return $str; } - function nbsp($str) - { + function nbsp($str){ return str_replace(" ",SPACE,$str); } - function url1_param($parameter) - { - if(isset($_REQUEST[$parameter])) - { + function url1_param($parameter){ + if(isset($_REQUEST[$parameter])){ return "$parameter=".$_REQUEST[$parameter]; } - else - { + else{ return ""; } } - function prepare_url(&$var, $varname=null) - { + function prepare_url(&$var, $varname=null){ $result = ""; if(is_array($var)){ |
