summaryrefslogtreecommitdiffstats
path: root/quips.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2003-01-06 16:53:11 +0100
committergerv%gerv.net <>2003-01-06 16:53:11 +0100
commitef85a567fdb1c5d58223902316351d57f062897d (patch)
tree15ce0756f457f0d78ad97a7fa1dd973831872557 /quips.cgi
parented5513d9d67a8b789cfa20e29316cf3d025df0d5 (diff)
downloadbugzilla-ef85a567fdb1c5d58223902316351d57f062897d.tar.gz
bugzilla-ef85a567fdb1c5d58223902316351d57f062897d.tar.xz
Bug 187837 - Unify showing and editing of quips. Patch by gerv; r=timeless, a=justdave.
Diffstat (limited to 'quips.cgi')
-rwxr-xr-xquips.cgi19
1 files changed, 1 insertions, 18 deletions
diff --git a/quips.cgi b/quips.cgi
index f1783cd0a..d152234ac 100755
--- a/quips.cgi
+++ b/quips.cgi
@@ -46,23 +46,6 @@ my $action = $::FORM{'action'} || "";
if ($action eq "show") {
# Read in the entire quip list
- SendSQL("SELECT quip FROM quips");
-
- my @quips;
- while (MoreSQLData()) {
- my ($quip) = FetchSQLData();
- push(@quips, $quip);
- }
-
- $vars->{'quips'} = \@quips;
- $vars->{'show_quips'} = 1;
-}
-
-if ($action eq "edit") {
- if (!UserInGroup('admin')) {
- ThrowUserError("quips_edit_denied");
- }
- # Read in the entire quip list
SendSQL("SELECT quipid,userid,quip FROM quips");
my $quips;
@@ -83,7 +66,7 @@ if ($action eq "edit") {
$vars->{'quipids'} = \@quipids;
$vars->{'quips'} = $quips;
$vars->{'users'} = $users;
- $vars->{'edit_quips'} = 1;
+ $vars->{'show_quips'} = 1;
}
if ($action eq "add") {