diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-02-10 12:53:34 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-02-10 12:53:34 +0000 |
| commit | f54860dfdd8d24de1dc26a530d95a23343756dc2 (patch) | |
| tree | 76234c5a861862aee2170b41cf7a517e82633e93 /frontends/php/events.php | |
| parent | 455a64dfe19d7700fa1fe10edecb1ea82fa5dcce (diff) | |
| download | zabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.tar.gz zabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.tar.xz zabbix-f54860dfdd8d24de1dc26a530d95a23343756dc2.zip | |
- improved Templates logic (Eugene)
- speed improvement for proc.num of Tru64 (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2631 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/events.php')
| -rw-r--r-- | frontends/php/events.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/events.php b/frontends/php/events.php index 443a0d34..3f816fb3 100644 --- a/frontends/php/events.php +++ b/frontends/php/events.php @@ -64,9 +64,9 @@ <?php - $h1=" ".S_HISTORY_OF_EVENTS_BIG; + $h1=SPACE.S_HISTORY_OF_EVENTS_BIG; - $h2=S_GROUP." "; + $h2=S_GROUP.SAPCE; $h2=$h2."<select class=\"biginput\" name=\"groupid\" onChange=\"submit()\">"; $h2=$h2.form_select("groupid",0,S_ALL_SMALL); $result=DBselect("select groupid,name from groups order by name"); @@ -90,7 +90,7 @@ } $h2=$h2."</select>"; - $h2=$h2." ".S_HOST." "; + $h2=$h2.SPACE.S_HOST.SPACE; $h2=$h2."<select class=\"biginput\" name=\"hostid\" onChange=\"submit()\">"; $h2=$h2.form_select("hostid",0,S_SELECT_HOST_DOT_DOT_DOT); @@ -112,7 +112,7 @@ } $h2=$h2.form_select("hostid",$row["hostid"],$row["host"]); } - $h2=$h2."</select> "; + $h2=$h2."</select>".SPACE; if(isset($_REQUEST["start"])) { |
