Merge pull request #818 from Robbt/sort-by-play-date

Smartblock sort tracks by last play date
This commit is contained in:
Kyle Robbertze 2019-05-09 17:05:56 +02:00 committed by GitHub
commit eb122f52fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;