summaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-10-11 16:12:45 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-10-11 16:12:45 +0000
commit0c229c4ffffb0f8d8092f6c3a848f365abfd2bdc (patch)
tree1b78e9d05876415b1edc20baa3a1a08c83ddf83a /frontends
parent659c8cc6b0ebaf9486201569c8a900f449e66b65 (diff)
downloadzabbix-0c229c4ffffb0f8d8092f6c3a848f365abfd2bdc.tar.gz
zabbix-0c229c4ffffb0f8d8092f6c3a848f365abfd2bdc.tar.xz
zabbix-0c229c4ffffb0f8d8092f6c3a848f365abfd2bdc.zip
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@2172 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends')
-rw-r--r--frontends/php/actions.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/frontends/php/actions.php b/frontends/php/actions.php
index c2016f94..e812f8ed 100644
--- a/frontends/php/actions.php
+++ b/frontends/php/actions.php
@@ -224,7 +224,11 @@
$recipient=@iif(isset($_GET["recipient"]),$_GET["recipient"],DBget_field($result,0,9));
$maxrepeats=DBget_field($result,0,10);
$repeatdelay=DBget_field($result,0,11);
- if($maxrepeats==0)
+ if(isset($_GET["repeat"]))
+ {
+ $repeat=$_GET["repeat"];
+ }
+ else if($maxrepeats==0)
{
$repeat=0;
}