summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/page_header.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-19 17:56:41 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-19 17:56:41 +0000
commit58aee2faa7ab32edcedaf68d346593de9ddb3cb6 (patch)
tree703f8e4d30b297df78d6123e4186045d4020c32f /frontends/php/include/page_header.php
parent8777958dc979627061016a85ad846507edf395e6 (diff)
downloadzabbix-58aee2faa7ab32edcedaf68d346593de9ddb3cb6.tar.gz
zabbix-58aee2faa7ab32edcedaf68d346593de9ddb3cb6.tar.xz
zabbix-58aee2faa7ab32edcedaf68d346593de9ddb3cb6.zip
- [DEV-139] added transaction functionality to frontend (Artem)
- many small fixes (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5505 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/page_header.php')
-rw-r--r--frontends/php/include/page_header.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/frontends/php/include/page_header.php b/frontends/php/include/page_header.php
index d61de1c0..1bde9468 100644
--- a/frontends/php/include/page_header.php
+++ b/frontends/php/include/page_header.php
@@ -113,15 +113,21 @@ COpt::profiling_start("page");
"label"=>S_WEB,
"sub_pages"=>array("httpdetails.php")
),
- array("url"=>"latest.php" ,"label"=>S_LATEST_DATA ,
- "sub_pages"=>array("history.php","chart.php")
+ array(
+ "url"=>"latest.php",
+ "label"=>S_LATEST_DATA,
+ "sub_pages"=>array("history.php","chart.php")
),
array(
"url"=>"tr_status.php",
"label"=>S_TRIGGERS,
"sub_pages"=>array("acknow.php","tr_comments.php","chart4.php","scripts_exec.php")
),
- array("url"=>"events.php" ,"label"=>S_EVENTS ),
+ array(
+ "url"=>"events.php",
+ "label"=>S_EVENTS,
+ "sub_pages"=>array("tr_events.php")
+ ),
array(
"url"=>"actions.php",
"label"=>S_ACTIONS),
@@ -414,6 +420,7 @@ COpt::profiling_start("page");
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/prototype.js"></script>
+ <script type="text/javascript" src="js/url.js"></script>
<?php
if(isset($page['scripts']) && is_array($page['scripts'])){
foreach($page['scripts'] as $id => $script){