summaryrefslogtreecommitdiffstats
path: root/frontends/php/services.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-04 12:55:26 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-04 12:55:26 +0000
commit9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0 (patch)
tree928b80f63c70a9b8addd26cf3d099140e5f0febd /frontends/php/services.php
parent16bfe6f1840d96fda7902f78a781430aa21d1e7e (diff)
downloadzabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.tar.gz
zabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.tar.xz
zabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.zip
- added history of last five visited pages (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4229 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/services.php')
-rw-r--r--frontends/php/services.php17
1 files changed, 11 insertions, 6 deletions
diff --git a/frontends/php/services.php b/frontends/php/services.php
index a7bcc6ed..671f9387 100644
--- a/frontends/php/services.php
+++ b/frontends/php/services.php
@@ -21,9 +21,10 @@
include_once "include/config.inc.php";
include_once "include/services.inc.php";
-$page["title"] = "S_IT_SERVICES";
+$page["title"] = "S_CONFIGURATION_OF_IT_SERVICES";
$page["file"] = "services.php";
$page['scripts'] = array('services.js');
+$page['hist_arg'] = array();
include_once "include/page_header.php";
@@ -94,12 +95,16 @@ createServiceTree($services,$treeServ); //return into $treeServ parametr
//permission issue
$treeServ = del_empty_nodes($treeServ);
+//----
+
+if(isset($_REQUEST['msg']) && !empty($_REQUEST['msg'])){
+ $p = new Ctag('p','yes');
+ $p->AddOption('align','center');
+ $p->AddOption('id','message');
+ $p->AddItem('<b>'.$_REQUEST['msg'].'</b>');
+ $p->Show();
+}
-$p = new Ctag('p','yes');
-$p->AddOption('align','center');
-$p->AddOption('id','message');
-(isset($_REQUEST['msg']))?($p->AddItem('<b>'.$_REQUEST['msg'].'</b>')):('');
-$p->Show();
show_table_header(S_IT_SERVICES_BIG);