From dd4d05df91e43efdeb625cefc7c5a1dc9f025e0b Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 15 Aug 2002 00:21:57 +0000 Subject: [PATCH] Fixed a bug where the up/down arrows weren't showing. --- lib/WebGUI/Wobject/DownloadManager.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/WebGUI/Wobject/DownloadManager.pm b/lib/WebGUI/Wobject/DownloadManager.pm index c5348e365..94d4e4c24 100644 --- a/lib/WebGUI/Wobject/DownloadManager.pm +++ b/lib/WebGUI/Wobject/DownloadManager.pm @@ -42,9 +42,9 @@ sub sortByColumn { $output .= '">'.$_[1].''; if ($session{form}{sort} eq $_[0]) { if ($session{form}{sortDirection} eq "desc") { - $output .= ' '; + $output .= ' '; } else { - $output .= ' '; + $output .= ' '; } } return $output;