diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index db0919864..e2c442da4 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -6,6 +6,7 @@ - Changed Thingy so it defaultly searches the default thing when you view the search screen for that thing. This way it displays everything and the user isn't left wondering what happened to the data they just submitted. + - Fixed the column ordering links in search on Thingy. - Fixed a problem with the file upload control where you couldn't delete the file if you have multiple attached. - fixed: Gallery album thumbnail titles now link to the image info rather than back to the album. diff --git a/lib/WebGUI/Asset/Wobject/Thingy.pm b/lib/WebGUI/Asset/Wobject/Thingy.pm index 6b13849de..9290617ac 100644 --- a/lib/WebGUI/Asset/Wobject/Thingy.pm +++ b/lib/WebGUI/Asset/Wobject/Thingy.pm @@ -2407,7 +2407,7 @@ sequenceNumber'); push(@constraints,$dbh->quote_identifier("field_".$field->{fieldId})." like '%".$searchValue."%'") if ($searchValue); } if($field->{displayInSearch}){ - my $orderByUrl = $currentUrl.";orderBy=".$field->{fieldId}; + my $orderByUrl = $self->session->url->append($currentUrl,"orderBy=".$field->{fieldId}); push(@displayInSearchFields_loop, { "displayInSearchFields_fieldId" => $field->{fieldId}, "displayInSearchFields_label" => $field->{label},