diff options
author | lpsolit%gmail.com <> | 2006-08-05 07:24:47 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-05 07:24:47 +0200 |
commit | 38c7d0766195d9d84fcd81bc23b9c71bff5bea6d (patch) | |
tree | f3688f465408bcccf98c6bf604b3023011dddd2b /editproducts.cgi | |
parent | ed12ad1849d654f8fb710d093c7aaf92f35e56ab (diff) | |
download | bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.gz bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.xz |
Bug 305941: Remove profiles.refreshed_when and groups.last_changed - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index 2d2f81009..432e2a9c6 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -240,9 +240,8 @@ if ($action eq 'new') { my $group_description = "Access to bugs in the " . $product->name . " product"; - $dbh->do('INSERT INTO groups - (name, description, isbuggroup, last_changed) - VALUES (?, ?, ?, NOW())', + $dbh->do('INSERT INTO groups (name, description, isbuggroup) + VALUES (?, ?, ?)', undef, ($productgroup, $group_description, 1)); my $gid = $dbh->bz_last_key('groups', 'id'); |