summaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
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;
}