summaryrefslogtreecommitdiffstats
path: root/browse.php
diff options
context:
space:
mode:
Diffstat (limited to 'browse.php')
-rw-r--r--browse.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/browse.php b/browse.php
index 684ae8c3..15ad94e8 100644
--- a/browse.php
+++ b/browse.php
@@ -40,6 +40,7 @@ switch ($_REQUEST['action']) {
case 'artist':
case 'playlist':
case 'live_stream':
+ case 'video':
case 'song':
Browse::set_type($_REQUEST['action']);
Browse::reset();
@@ -90,6 +91,11 @@ switch($_REQUEST['action']) {
$playlist_ids = Browse::get_objects();
Browse::show_objects();
break;
+ case 'video':
+ Browse::set_sort('title','ASC');
+ $video_ids = Browse::get_objects();
+ Browse::show_objects();
+ break;
default:
break;