Fixed a bug where the up/down arrows weren't showing.
This commit is contained in:
parent
43b7820191
commit
dd4d05df91
1 changed files with 2 additions and 2 deletions
|
|
@ -42,9 +42,9 @@ sub sortByColumn {
|
|||
$output .= '">'.$_[1].'</a>';
|
||||
if ($session{form}{sort} eq $_[0]) {
|
||||
if ($session{form}{sortDirection} eq "desc") {
|
||||
$output .= ' <img src="'.$session{setting}{lib}.'/desc.gif">';
|
||||
$output .= ' <img src="'.$session{config}{extras}.'/desc.gif">';
|
||||
} else {
|
||||
$output .= ' <img src="'.$session{setting}{lib}.'/asc.gif">';
|
||||
$output .= ' <img src="'.$session{config}{extras}.'/asc.gif">';
|
||||
}
|
||||
}
|
||||
return $output;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue