diff options
Diffstat (limited to 'pages/timers.ecpp')
-rw-r--r-- | pages/timers.ecpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 2a9ee4c..66b5235 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -49,10 +49,12 @@ static const size_t maximumDescriptionLength = 300; throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); LiveTimerManager().DelTimer(timer); timerNotifier.SetTimerModification(); + return reply.redirect("timers.html"); } if (action == "toggle") { LiveTimerManager().ToggleTimerActive(timer); timerNotifier.SetTimerModification(); + return reply.redirect("timers.html"); } } |