diff options
author | jouni%heikniemi.net <> | 2002-07-04 20:13:50 +0200 |
---|---|---|
committer | jouni%heikniemi.net <> | 2002-07-04 20:13:50 +0200 |
commit | 75737e467cad4d82c34f51103e33706af0bfa5ce (patch) | |
tree | 40f5c27c48355d44c41269e1eacd2c2aaca763ec /editcomponents.cgi | |
parent | 762b9924afb65f8ebfbb7b0391220c127d25e801 (diff) | |
download | bugzilla-75737e467cad4d82c34f51103e33706af0bfa5ce.tar.gz bugzilla-75737e467cad4d82c34f51103e33706af0bfa5ce.tar.xz |
Bug 145795: editcomponents had error messages referring to products where it should've been components.
r=bbaetz,afranke
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 4f76593df..576f01375 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -772,7 +772,7 @@ if ($action eq 'update') { if ($component ne $componentold) { unless ($component) { - print "Sorry, I can't delete the product name."; + print "Sorry, but a component must have a name."; PutTrailer($localtrailer); SendSQL("UNLOCK TABLES"); exit; @@ -795,7 +795,7 @@ if ($action eq 'update') { AND program=" . SqlQuote($product)); unlink "data/versioncache"; - print "Updated product name.<BR>\n"; + print "Updated component name.<BR>\n"; } SendSQL("UNLOCK TABLES"); |