diff options
| -rw-r--r-- | templates/bookmarks.tpl.php | 32 | 
1 files changed, 27 insertions, 5 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 3059e17..09b1d95 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -92,11 +92,33 @@ window.onload = playerLoad;  <p id="sort"><?php echo $total.' '.T_("bookmark(s)"); ?> - <?php echo T_("Sort by:"); ?>  <?php -$dateSort = (getSortOrder()=='date_desc')? 'date_asc':'date_desc'; -$titleSort = (getSortOrder()=='title_asc')? 'title_desc':'title_asc'; -$urlSort = (getSortOrder()=='url_asc')? 'url_desc':'url_asc'; -?> <a href="?sort=<?php echo $dateSort ?>"><?php echo T_("Date"); ?></a><span> -/ </span> <a href="?sort=<?php echo $titleSort ?>"><?php echo T_("Title"); ?></a><span> +switch(getSortOrder()) { +	case 'date_asc': +	$dateArrow = ' ↑'; +	$dateSort = 'date_desc'; +	$titleSort = 'title_asc'; +	break; +	case 'title_asc': +	$titleArrow = ' ↑'; +	$dateSort = 'date_desc'; +	$titleSort = 'title_desc';	 +	break; +	case 'title_desc': +	$titleArrow = ' ↓'; +	$dateSort = 'date_desc'; +	$titleSort = 'title_asc'; +	break; +	case 'date_desc': +	default: +	$dateArrow = ' ↓'; +	$dateSort = 'date_asc'; +	$titleSort = 'title_asc'; +	break; +} +//$dateSort = (getSortOrder()=='date_desc')? 'date_asc':'date_desc'; +//$titleSort = (getSortOrder()=='title_asc')? 'title_desc':'title_asc'; +?> <a href="?sort=<?php echo $dateSort ?>"><?php echo T_("Date").$dateArrow; ?></a><span> +/ </span> <a href="?sort=<?php echo $titleSort ?>"><?php echo T_("Title").$titleArrow; ?></a><span>  / </span> <?php  if($currenttag!= '') {  	if($user!= '') {  | 
