]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 270823: Remove failure on search 'time since owner touched bug' (remove...
authorjocuri%softhome.net <>
Tue, 14 Dec 2004 10:31:56 +0000 (10:31 +0000)
committerjocuri%softhome.net <>
Tue, 14 Dec 2004 10:31:56 +0000 (10:31 +0000)
Bugzilla/Search.pm

index 121f926300461f179201b28f1d4bce18f3491de2..12f22b0e2bb662c9d80010721060496c5ad200dc 100644 (file)
@@ -852,8 +852,8 @@ sub init {
                 } elsif ($unit eq 'y') {
                     $unitinterval = 'YEAR';
                 }
-                my $cutoff = "DATE_SUB(NOW(), 
-                              INTERVAL $quantity $unitinterval)";
+                my $cutoff = "DATE_SUB(NOW(), " .
+                             "INTERVAL $quantity $unitinterval)";
                 my $assigned_fieldid = &::GetFieldID('assigned_to');
                 push(@supptables, "LEFT JOIN longdescs comment_$table " .
                                   "ON comment_$table.who = bugs.assigned_to " .