diff options
author | terry%netscape.com <> | 1998-08-28 03:14:14 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-08-28 03:14:14 +0200 |
commit | 72058a1627345550626783c1a8194b021f5bad0e (patch) | |
tree | 3c84e53d10c0efca3926b821ebd6bced7d8d0c9d | |
parent | d521acf9795855bb08474f7cfa4befc6e31cd066 (diff) | |
download | bugzilla-72058a1627345550626783c1a8194b021f5bad0e.tar.gz bugzilla-72058a1627345550626783c1a8194b021f5bad0e.tar.xz |
Hacky preventative for bug 540 -- disable the "edit long description"
feature entirely.
-rwxr-xr-x | bug_form.tcl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bug_form.tcl b/bug_form.tcl index 9e433b7f7..8423f99e8 100755 --- a/bug_form.tcl +++ b/bug_form.tcl @@ -199,7 +199,6 @@ puts " <FONT size=\"+1\"><B> <A HREF=\"show_activity.cgi?id=$FORM(id)\">View Bug Activity</A> <A HREF=\"long_list.cgi?buglist=$FORM(id)\">Format For Printing</A> - <A HREF=\"edit_desc.cgi?id=$FORM(id)\">Edit Long Description</A> </B></FONT><BR> </FORM> <table><tr><td align=left><B>Description:</B></td><td width=100%> </td> @@ -210,6 +209,12 @@ puts " </PRE> <HR>" +# To add back option of editing the long description, insert after the above +# long_list.cgi line: +# <A HREF=\"edit_desc.cgi?id=$FORM(id)\">Edit Long Description</A> + + + navigation_header puts "</BODY>" |