diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-22 04:28:36 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-22 04:28:36 +0000 |
commit | 478c6618b0ee637334aefb20eead299b6975bef4 (patch) | |
tree | ba6d408597066b425066ff79e163f8958b44338a /templates | |
parent | 666ed4e1ea7d7b7860e917c256479a26d4754b09 (diff) | |
download | ampache-478c6618b0ee637334aefb20eead299b6975bef4.tar.gz ampache-478c6618b0ee637334aefb20eead299b6975bef4.tar.bz2 ampache-478c6618b0ee637334aefb20eead299b6975bef4.zip |
fixed the search add result button and messed up some browse sort stuff
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_albums.inc.php | 2 | ||||
-rw-r--r-- | templates/show_search.inc.php | 4 | ||||
-rw-r--r-- | templates/show_search_options.inc.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_albums.inc.php b/templates/show_albums.inc.php index 02613803..8d12ca5a 100644 --- a/templates/show_albums.inc.php +++ b/templates/show_albums.inc.php @@ -41,7 +41,7 @@ $ajax_url = Config::get('ajax_url'); <th class="cel_cover"><?php echo _('Cover'); ?></th> <?php } ?> <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&type=album&sort=name',_('Album'),'album_sort_name'); ?></th> - <th class="cel_artist"><?php echo _('Artist'); ?></th> + <th class="cel_artist"><?php echo Ajax::text('?page=browse&action=set_sort&type=album&sort=artist',_('Artist'),'album_sort_artist'); ?></th> <th class="cel_songs"><?php echo _('Songs'); ?></th> <th class="cel_year"><?php echo Ajax::text('?page=browse&action=set_sort&type=album&sort=year',_('Year'),'album_sort_year'); ?></th> <th class="col_rating"><?php echo _('Rating'); ?></th> diff --git a/templates/show_search.inc.php b/templates/show_search.inc.php index a23ccc70..7991fbee 100644 --- a/templates/show_search.inc.php +++ b/templates/show_search.inc.php @@ -51,9 +51,9 @@ <td> <input type="text" id="s_album" name="s_album" value="<?php echo scrub_out($_REQUEST['s_album']); ?>" /> </td> - <td><?php echo _('Genre'); ?></td> + <td><?php echo _('Tag'); ?></td> <td> - <input type="text" id="s_genre" name="s_genre" value="<?php echo scrub_out($_REQUEST['s_genre']); ?>" /> + <input type="text" id="s_tag" name="s_tag" value="<?php echo scrub_out($_REQUEST['s_tag']); ?>" /> </td> </tr> <tr class="<?php echo flip_class(); ?>"> diff --git a/templates/show_search_options.inc.php b/templates/show_search_options.inc.php index 71f7266d..57c1d9ae 100644 --- a/templates/show_search_options.inc.php +++ b/templates/show_search_options.inc.php @@ -23,7 +23,7 @@ <?php show_box_top(_('Options')); ?> <div id="search_options"> <ul> - <li><?php echo Ajax::text('?action=basket&type=browse_set',_('Add Search Results'),'add_search_results'); ?></li> + <li><?php echo Ajax::text('?action=basket&type=browse_set&object_type=song',_('Add Search Results'),'add_search_results'); ?></li> <?php if (Access::check_function('batch_download')) { ?> <li><a href="<?php echo Config::get('web_path'); ?>/batch.php?action=browse"><?php echo _('Batch Download'); ?></a></li> <?php } ?> |