diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-12-07 09:44:28 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-12-07 09:44:28 +0000 |
| commit | 57aba8a89d9da927a39a3ffadf258ead2f27b3c7 (patch) | |
| tree | 59a8dc852f93f9b9760043a4a2e9388ca4d9249e /frontends/php/actions.php | |
| parent | cfacb3b129f95ee9efc41830d0a939875e7732ed (diff) | |
- all <? ?> were changed to <?php ?>. No changes in php.ini required anymore.
(Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@580 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/actions.php')
| -rw-r--r-- | frontends/php/actions.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/php/actions.php b/frontends/php/actions.php index 28fdd298..28a962d8 100644 --- a/frontends/php/actions.php +++ b/frontends/php/actions.php @@ -1,4 +1,4 @@ -<? +<?php $page["title"]="Actions"; $page["file"]="actions.php"; @@ -6,7 +6,7 @@ show_header($page["title"],0,0); ?> -<? +<?php if(!check_right_on_trigger("U",$HTTP_GET_VARS["triggerid"])) { show_table_header("<font color=\"AA0000\">No permissions !</font>"); @@ -15,7 +15,7 @@ } ?> -<? +<?php if(isset($HTTP_GET_VARS["register"])) { if($HTTP_GET_VARS["register"]=="add") @@ -38,7 +38,7 @@ } ?> -<? +<?php $trigger=get_trigger_by_triggerid($HTTP_GET_VARS["triggerid"]); $expression=explode_exp($trigger["expression"],1); $description=$trigger["description"]; @@ -49,7 +49,7 @@ show_table_header("$description<BR>$expression"); ?> -<? +<?php $sql="select a.actionid,a.triggerid,u.alias,a.good,a.delay,a.subject,a.message from actions a,users u where a.userid=u.userid and a.triggerid=".$HTTP_GET_VARS["triggerid"]." order by u.alias, a.good desc"; $result=DBselect($sql); @@ -101,7 +101,7 @@ </table> </div> -<? +<?php if(isset($HTTP_GET_VARS["actionid"])) { |
