diff options
author | justdave%syndicomm.com <> | 2001-10-13 10:36:13 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-10-13 10:36:13 +0200 |
commit | 430a652fcfc2ab50665fadd47fd3689d24446348 (patch) | |
tree | 8d2c19bac3069c6aa4755ee79e1f80e964b5c700 /editproducts.cgi | |
parent | 5c8613183f5779686e739bc9a470c770cf8ff51d (diff) | |
download | bugzilla-430a652fcfc2ab50665fadd47fd3689d24446348.tar.gz bugzilla-430a652fcfc2ab50665fadd47fd3689d24446348.tar.xz |
Fix for bug 104516: No code changes in this patch, all this checkin does is remove all tabs from the bugzilla source and replace it with the appropriate number of spaces (in most cases 8) to line up with existing code. This is part of the effort to bring the existing codebase up to par with our style guidelines.
Patch by Jake Steehagen <jake@acutex.net>
r= justdave x2
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index f7d479f1d..f602c351e 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -1009,10 +1009,10 @@ if ($action eq 'update') { SendSQL("UPDATE products SET product=$qp WHERE product=$qpold"); SendSQL("UPDATE versions SET program=$qp WHERE program=$qpold"); SendSQL("UPDATE milestones SET product=$qp WHERE product=$qpold"); - # Need to do an update to groups as well. If there is a corresponding - # bug group, whether usebuggroups is currently set or not, we want to - # update it so it will match in the future. If there is no group, this - # update statement will do nothing, so no harm done. -JMR, 3/8/00 + # Need to do an update to groups as well. If there is a corresponding + # bug group, whether usebuggroups is currently set or not, we want to + # update it so it will match in the future. If there is no group, this + # update statement will do nothing, so no harm done. -JMR, 3/8/00 SendSQL("UPDATE groups " . "SET name=$qp, " . "description=".SqlQuote($product." Bugs Access")." ". |