summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-12-21 06:58:32 +0100
committerlpsolit%gmail.com <>2005-12-21 06:58:32 +0100
commitbe43d4b573f7cebb627e88b46212c0903acf7c7b (patch)
tree2d794e9beb81f6fe62f4b41d91ef7fd0daaac2bc /buglist.cgi
parent85731f09a6374f82ee6b1efcffa236068b643a3c (diff)
downloadbugzilla-be43d4b573f7cebb627e88b46212c0903acf7c7b.tar.gz
bugzilla-be43d4b573f7cebb627e88b46212c0903acf7c7b.tar.xz
Bug 302326: Column sort links in bug lists should use field IDs instead of names - Patch by Marc Schumann <wurblzap@gmail.com> r=LpSolit a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi24
1 files changed, 17 insertions, 7 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 2d24719b8..2fda33611 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -515,6 +515,8 @@ if (!$params->param('query_format')) {
# "DESC" is added to the end of the field to sort in descending order,
# and the redundant short_desc column is removed when the client
# requests "all" columns.
+# Note: For column names using aliasing (SQL "<field> AS <alias>"), the column
+# ID needs to be identical to the field ID for list ordering to work.
my $columns = {};
sub DefineColumn {
@@ -757,7 +759,7 @@ if ($order) {
$fragment = trim($fragment);
# Accept an order fragment matching a column name, with
# asc|desc optionally following (to specify the direction)
- if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames)) {
+ if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames, keys(%$columns))) {
next if $fragment =~ /\brelevance\b/ && !$fulltext;
push(@order, $fragment);
}
@@ -784,21 +786,29 @@ else {
$order = "bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id";
}
+# Make sure ORDER BY columns are included in the field list.
foreach my $fragment (split(/,/, $order)) {
$fragment = trim($fragment);
if (!grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @selectnames)) {
# Add order columns to selectnames
# The fragment has already been validated
$fragment =~ s/\s+(asc|desc)$//;
- # This fixes an issue where columns being used in the ORDER BY statement
- # can have the SQL that generates the value changed to become invalid -
- # mainly affects time tracking.
+
+ # While newer fragments contain IDs for aliased columns, older
+ # LASTORDER cookies (or bookmarks) may contain full names.
+ # Convert them to an ID here.
if ($fragment =~ / AS (\w+)/) {
- $fragment = $columns->{$1}->{'name'};
+ $fragment = $columns->{$1}->{'id'};
}
- else {
- $fragment =~ tr/a-zA-Z\.0-9\-_//cd;
+
+ $fragment =~ tr/a-zA-Z\.0-9\-_//cd;
+
+ # If the order fragment is an ID, we need its corresponding name
+ # to be in the field list.
+ if (exists($columns->{$fragment})) {
+ $fragment = $columns->{$fragment}->{'name'};
}
+
push @selectnames, $fragment;
}
}