]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Backing out previous change, the wrong patch got checked in.
authorjake%acutex.net <>
Sat, 20 Oct 2001 19:59:57 +0000 (19:59 +0000)
committerjake%acutex.net <>
Sat, 20 Oct 2001 19:59:57 +0000 (19:59 +0000)
bug_form.pl
globals.pl

index e07a118bd53c39a4e918217f39b5b03646deda65..d3311fee5bdfc161876f8e2ba11acf95515e2118 100644 (file)
@@ -570,7 +570,7 @@ if ( Param("move-enabled") && (defined $::COOKIE{"Bugzilla_login"}) && ($::COOKI
 print "<BR></FORM>";
 
 print "
-<table><tr><td align=left><B><a name=\"c0\" href=\"#c0\">Description:</a></B></td>
+<table><tr><td align=left><B>Description:</B></td>
 <td align=right width=100%>Opened: $bug{'creation_ts'}</td></tr></table>
 <HR>
 ";
index 4b9c7c9e7ec8f770155d87565844b2ac2a3b4369..834c08d1ccf9c98469c9e1d89510f1b8b1ff8197 100644 (file)
@@ -891,22 +891,6 @@ sub quoteUrls {
 
         $things[$count++] = $item;
     }
-    # Either a comment string or no comma and a compulsory #.
-    while ($text =~ s/\bbug(\s|%\#)*(\d+),?\s*comment\s*(\s|%\#)(\d+)/"##$count##"/ei) {
-        my $item = $&;
-        my $bugnum = $2;
-        my $comnum = $4;
-        $item = GetBugLink($bugnum, $item);
-        $item =~ s/(id=\d+)/$1#c$comnum/;
-        $things[$count++] = $item;
-    }
-    while ($text =~ s/\bcomment(\s|%\#)*(\d+)/"##$count##"/ei) {
-        my $item = $&;
-        my $num = $2;
-        $item = value_quote($item);
-        $item = qq{<A HREF="#c$num">$item</A>};
-        $things[$count++] = $item;
-    }
     while ($text =~ s/\bbug(\s|%\#)*(\d+)/"##$count##"/ei) {
         my $item = $&;
         my $num = $2;
@@ -1063,16 +1047,16 @@ sub GetLongDescriptionAsHTML {
         my ($who, $email, $when, $text) = (FetchSQLData());
         $email .= Param('emailsuffix');
         if ($count) {
-            $result .= "<BR><BR><I>------- Additional Comment <a name='c$count' href='#c$count'>#$count</a> From ";
-            if ($who) {
-                $result .= qq{<A HREF="mailto:$email">$who</A> } .
-                    time2str("%Y-%m-%d %H:%M", str2time($when));
-            } else {
-                $result .= qq{<A HREF="mailto:$email">$email</A> } .
-                    time2str("%Y-%m-%d %H:%M", str2time($when));
-            }
-              
-            $result .= " -------</I><BR>\n";
+            $result .= "<BR><BR><I>------- Additional Comments From ";
+              if ($who) {
+                  $result .= qq{<A HREF="mailto:$email">$who</A> } .
+                      time2str("%Y-%m-%d %H:%M", str2time($when)) .
+                          " -------</I><BR>\n";
+              } else {
+                  $result .= qq{<A HREF="mailto:$email">$email</A> } .
+                      time2str("%Y-%m-%d %H:%M", str2time($when)) .
+                          " -------</I><BR>\n";
+              }
         }
         $result .= "<PRE>" . quoteUrls(\%knownattachments, $text) . "</PRE>\n";
         $count++;