Skip to content

Commit

Permalink
fixing sortLink validation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
viveleroi committed May 30, 2011
1 parent bea376a commit 38f6479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/template/Template.php
Expand Up @@ -838,7 +838,7 @@ public function sortLink($title, $location, $sort_by, $add_class = false){
$url = $base.'?'.http_build_query(array(
'sort_location'=>$location,
'sort_by'=>$sort_by,
'sort_direction'=>$new_direction));
'sort_direction'=>$new_direction), '', '&');

// create the link
$html = sprintf('<a href="%s" title="%s" class="%s">%s</a>',
Expand Down

0 comments on commit 38f6479

Please sign in to comment.