diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 00:54:41 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 00:54:41 +0000 |
commit | 6dbd87e0784732b2efee402b693143b71d1462d8 (patch) | |
tree | 29a9e79c3194161bbfd9f18dfdba4239dc27dd8d /templates/show_videos.inc.php | |
parent | 98f41161aa63d82710bf1a8278bb7443dcfea8c6 (diff) | |
download | ampache-6dbd87e0784732b2efee402b693143b71d1462d8.tar.gz ampache-6dbd87e0784732b2efee402b693143b71d1462d8.tar.bz2 ampache-6dbd87e0784732b2efee402b693143b71d1462d8.zip |
add time range to advanced search, resolves #329
Diffstat (limited to 'templates/show_videos.inc.php')
-rw-r--r-- | templates/show_videos.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/show_videos.inc.php b/templates/show_videos.inc.php index 4e679eb0..f45b3218 100644 --- a/templates/show_videos.inc.php +++ b/templates/show_videos.inc.php @@ -36,7 +36,7 @@ $web_path = Config::get('web_path'); <th class="cel_title"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=title',_('Title'),'sort_video_title'); ?></th> <th class="cel_codec"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=codec',_('Codec'),'sort_video_codec'); ?></th> <th class="cel_resolution"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=resolution',_('Resolution'),'sort_video_rez'); ?></th> - <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length',_('Length'),'sort_video_length'); ?></th> + <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length',_('Time'),'sort_video_length'); ?></th> <th class="cel_tags"><?php echo _('Tags'); ?></th> </tr> <?php @@ -59,6 +59,7 @@ foreach ($object_ids as $video_id) { <th class="cel_title"><?php echo _('Title'); ?></th> <th class="cel_codec"><?php echo _('Codec'); ?></th> <th class="cel_resolution"><?php echo _('Resolution'); ?></th> + <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length',_('Time'),'sort_video_length_bottom'); ?></th> <th class="cel_tags"><?php echo _('Tags'); ?></th> </tr> |