summaryrefslogtreecommitdiffstats
path: root/frontends/php/profile.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-07-10 14:57:25 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-07-10 14:57:25 +0000
commitb78f379fdaad31612d7eb0fa4d4574ac304748a1 (patch)
tree422d17ac3f33e3d6e04370068d54e08003f125b2 /frontends/php/profile.php
parent339a3a8d3191149c24119814a09447b976a98373 (diff)
downloadzabbix-b78f379fdaad31612d7eb0fa4d4574ac304748a1.tar.gz
zabbix-b78f379fdaad31612d7eb0fa4d4574ac304748a1.tar.xz
zabbix-b78f379fdaad31612d7eb0fa4d4574ac304748a1.zip
- fixed addition of complex triggers for linked hosts (Alexei)
- better localisation support (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1903 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/profile.php')
-rw-r--r--frontends/php/profile.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/frontends/php/profile.php b/frontends/php/profile.php
index 735f06e9..9e9e818c 100644
--- a/frontends/php/profile.php
+++ b/frontends/php/profile.php
@@ -22,7 +22,7 @@
include "include/config.inc.php";
include "include/forms.inc.php";
- $page["title"] = S_USER_PROFILE;
+ $page["title"] = "S_USER_PROFILE";
$page["file"] = "profile.php";
show_header($page["title"],0,0);
@@ -30,6 +30,15 @@
?>
<?php
+ if($USER_DETAILS["alias"]=="guest")
+ {
+ show_table_header("<font color=\"AA0000\">".S_NO_PERMISSIONS."</font>");
+ show_footer();
+ exit;
+ }
+?>
+
+<?php
if(isset($_GET["register"]))
{
if($_GET["register"]=="update profile")