diff options
-rwxr-xr-x | process_bug.cgi | 2 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 80b318a74..6505d6fcf 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1108,7 +1108,7 @@ foreach my $id (@idlist) { if (!CheckCanChangeField($col, $id, $oldvalues[$i], $::FORM{$col})) { # More fun hacking... don't display component_id if ($col eq 'component_id') { - $vars->{'oldvalue'} = get_component_name($product_id, $oldhash{'component_id'}); + $vars->{'oldvalue'} = get_component_name($oldhash{'component_id'}); $vars->{'newvalue'} = $::FORM{'component'}; $vars->{'field'} = 'component'; } diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 33ebb9472..dfb8af9fa 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -213,6 +213,7 @@ 0 and 1. [% ELSIF error == "illegal_change" %] + [% title = "Not allowed" %] You tried to change the <strong>[% field %]</strong> field from <em>[% oldvalue FILTER html %]</em> to <em>[% newvalue FILTER html %]</em>, |