diff options
-rwxr-xr-x | web/alert.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/alert.cgi b/web/alert.cgi index 61a6fe7c2..59b6607a4 100755 --- a/web/alert.cgi +++ b/web/alert.cgi @@ -40,6 +40,10 @@ sub main { Thank you for trying to confirm your alert. We seem to have an error ourselves though, so <a href="%s">please let us know what went on</a> and we'll look into it. EOF + my %vars = (error => $out); + my $cobrand_page = Page::template_include('error', $q, Page::template_root($q), %vars); + $out = $cobrand_page if $cobrand_page; + } } elsif ($q->param('rss')) { $out = alert_rss($q); |