summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-09-21 04:53:09 +0200
committerlpsolit%gmail.com <>2007-09-21 04:53:09 +0200
commit6059e78c80326d2880f272e6b2faa03e7ef0f6a6 (patch)
tree669ce9ae5b4db5239e1cf462bde39d4a2a4eaddd /buglist.cgi
parent222ab62a0b82b2fed6ccb4fccac8e9b7e6bf862d (diff)
downloadbugzilla-6059e78c80326d2880f272e6b2faa03e7ef0f6a6.tar.gz
bugzilla-6059e78c80326d2880f272e6b2faa03e7ef0f6a6.tar.xz
Fixing bug 395771 for real
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi
index d04830a29..73649f785 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -946,7 +946,7 @@ $db_order =~ s/$aggregate_search/percentage_complete/g;
# Now put $db_order into a format that Bugzilla::Search can use.
# (We create $db_order as a string first because that's the way
# we did it before Bugzilla::Search took an "order" argument.)
-my @orderstrings = split(/[,\s]+/, $db_order);
+my @orderstrings = split(/,\s*/, $db_order);
# Generate the basic SQL query that will be used to generate the bug list.
my $search = new Bugzilla::Search('fields' => \@selectnames,