diff options
author | mkanat%kerio.com <> | 2005-11-24 06:35:59 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-11-24 06:35:59 +0100 |
commit | 808e4b12c2e49be1bf1edafafd4c4c1ef2ddf226 (patch) | |
tree | 537ac1849fcb90c4ff3d57274b4c744302f610f3 /Bugzilla | |
parent | 4b61c038bb255086cf273ff3faa1b2d89c220212 (diff) | |
download | bugzilla-808e4b12c2e49be1bf1edafafd4c4c1ef2ddf226.tar.gz bugzilla-808e4b12c2e49be1bf1edafafd4c4c1ef2ddf226.tar.xz |
Bug 314489: [PostgreSQL] Buglists sorted by importance fail
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 5c08ea304..5158091ad 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1690,6 +1690,6 @@ sub BuildOrderBy { return; } - push(@$stringlist, $orderfield . ' ' . $orderdirection); + push(@$stringlist, trim($orderfield . ' ' . $orderdirection)); } 1; |