summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/screens.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-05-06 11:52:09 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-05-06 11:52:09 +0000
commit26ee00a8526a15de827768c715a0fc27a4cee925 (patch)
treee4544ad543e3d4cd1a69bc43f28aa153f44f8ebe /frontends/php/include/screens.inc.php
parent639aac687504d1c00010a4295c22f3e6fb878ffb (diff)
downloadzabbix-26ee00a8526a15de827768c715a0fc27a4cee925.tar.gz
zabbix-26ee00a8526a15de827768c715a0fc27a4cee925.tar.xz
zabbix-26ee00a8526a15de827768c715a0fc27a4cee925.zip
- better error reporting for GUI (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1757 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/screens.inc.php')
-rw-r--r--frontends/php/include/screens.inc.php12
1 files changed, 3 insertions, 9 deletions
diff --git a/frontends/php/include/screens.inc.php b/frontends/php/include/screens.inc.php
index 14a12d02..688e950b 100644
--- a/frontends/php/include/screens.inc.php
+++ b/frontends/php/include/screens.inc.php
@@ -21,11 +21,9 @@
<?php
function add_screen($name,$cols,$rows)
{
- global $ERROR_MSG;
-
if(!check_right("Screen","A",0))
{
- $ERROR_MSG="Insufficient permissions";
+ error("Insufficient permissions");
return 0;
}
@@ -35,11 +33,9 @@
function update_screen($screenid,$name,$cols,$rows)
{
- global $ERROR_MSG;
-
if(!check_right("Screen","U",0))
{
- $ERROR_MSG="Insufficient permissions";
+ error("Insufficient permissions");
return 0;
}
@@ -81,8 +77,6 @@
function get_screen_by_screenid($screenid)
{
- global $ERROR_MSG;
-
$sql="select * from screens where screenid=$screenid";
$result=DBselect($sql);
if(DBnum_rows($result) == 1)
@@ -91,7 +85,7 @@
}
else
{
- $ERROR_MSG="No screen with screenid=[$screenid]";
+ error("No screen with screenid=[$screenid]");
}
return $result;
}