added sort by last play time but does not work with unplayed tracks

This commit is contained in:
Robbt 2019-05-08 18:01:06 -04:00
parent f57765b17a
commit c2ad5e387a
2 changed files with 11 additions and 11 deletions

View file

@ -171,7 +171,9 @@ class Application_Form_SmartBlockCriteria extends Zend_Form_SubForm
$this->sortOptions = array(
"random" => _("Randomly"),
"newest" => _("Newest"),
"oldest" => _("Oldest")
"oldest" => _("Oldest"),
"mostrecentplay" => ("Most recently played"),
"leastrecentplay" => ("Least recently played")
);
}
return $this->sortOptions;