aboutsummaryrefslogtreecommitdiff
path: root/templates/bookmarks.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/bookmarks.tpl.php')
-rw-r--r--templates/bookmarks.tpl.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php
index 5820a4b..3cd3953 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -94,22 +94,26 @@ window.onload = playerLoad;
<?php
switch(getSortOrder()) {
case 'date_asc':
+ $titleArrow = '';
$dateArrow = ' &uarr;';
$dateSort = 'date_desc';
$titleSort = 'title_asc';
break;
case 'title_asc':
$titleArrow = ' &uarr;';
+ $dateArrow = '';
$dateSort = 'date_desc';
$titleSort = 'title_desc';
break;
case 'title_desc':
$titleArrow = ' &darr;';
+ $dateArrow = '';
$dateSort = 'date_desc';
$titleSort = 'title_asc';
break;
case 'date_desc':
default:
+ $titleArrow = '';
$dateArrow = ' &darr;';
$dateSort = 'date_asc';
$titleSort = 'title_asc';