]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix a comment location in report.cgi.
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Mon, 4 Apr 2011 23:56:05 +0000 (16:56 -0700)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Mon, 4 Apr 2011 23:56:05 +0000 (16:56 -0700)
https://bugzilla.mozilla.org/show_bug.cgi?id=617641

report.cgi

index 7492619736a28bbee26d56c409353af83c37a2be..8d80b192fb078e7564395109af6d64d68c08426f 100755 (executable)
@@ -313,9 +313,9 @@ $template->process("$format->{'template'}", $vars)
 sub get_names {
     my ($names, $isnumeric, $field_name) = @_;
     my ($field, @sorted);
+    # _realname fields aren't real Bugzilla::Field objects, but they are a
+    # valid axis, so we don't vailidate them as Bugzilla::Field objects.
     $field = Bugzilla::Field->check($field_name) 
-            # _realname fields aren't real Bugzilla::Field objects,
-            # but they are a valid axis.
         if ($field_name && $field_name !~ /_realname$/);
     
     if ($field && $field->is_select) {