summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl12
1 files changed, 10 insertions, 2 deletions
diff --git a/CGI.pl b/CGI.pl
index a5a4b3b1e..1e22afc52 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -631,8 +631,16 @@ sub DumpBugActivity {
}
-
-
+#
+# Prints a warnbanner incl. image with given message
+#
+sub warnBanner( $ )
+{
+ my ($msg) = (@_);
+ print Param("warnbannerhtml");
+ print $msg;
+ print Param("warnfooterhtml");
+}
############# Live code below here (that is, not subroutine defs) #############