diff options
author | Matt Selsky <selsky@columbia.edu> | 2011-12-26 13:48:18 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-12-26 13:48:18 +0100 |
commit | 6d02055deb5a8bbeff15459f150e129bbf725eab (patch) | |
tree | fe97cc1af3bbc938fc7a5e050ae9cebdb9fa3015 /process_bug.cgi | |
parent | 429534ee24bfbfce0c330b92e0167b4c8cff6b5f (diff) | |
download | bugzilla-6d02055deb5a8bbeff15459f150e129bbf725eab.tar.gz bugzilla-6d02055deb5a8bbeff15459f150e129bbf725eab.tar.xz |
Bug 399080: Remove the 'usebugaliases' parameter (turned on permanently)
r/a=LpSolit
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 2d04f73c1..2e054bc29 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -306,7 +306,7 @@ if (defined $cgi->param('newcc') if (defined $cgi->param('id')) { # Since aliases are unique (like bug numbers), they can only be changed # for one bug at a time. - if (Bugzilla->params->{"usebugaliases"} && defined $cgi->param('alias')) { + if (defined $cgi->param('alias')) { $set_all_fields{alias} = $cgi->param('alias'); } } |