diff options
author | justdave%syndicomm.com <> | 2002-11-11 09:19:41 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-11-11 09:19:41 +0100 |
commit | b693f20047d849a9bf3c064412ef30d7041401f8 (patch) | |
tree | 56930e14f3c5ffdd4945ee54c17cf20d23a1e54d /quips.cgi | |
parent | 6b4ffb0cf63a60500ae205692824879b63986edb (diff) | |
download | bugzilla-b693f20047d849a9bf3c064412ef30d7041401f8.tar.gz bugzilla-b693f20047d849a9bf3c064412ef30d7041401f8.tar.xz |
Fix for bug 179380: if "enablequips" is off, quips.cgi now presents a message that the quips are disabled instead of letting you view or add quips.
r=myk, a=me
Diffstat (limited to 'quips.cgi')
-rwxr-xr-x | quips.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -38,6 +38,10 @@ require "CGI.pl"; ConnectToDatabase(); confirm_login(); +if (Param('enablequips') eq "off") { + ThrowUserError("quips_disabled"); +} + my $action = $::FORM{'action'} || ""; if ($action eq "show") { |