summaryrefslogtreecommitdiffstats
path: root/templates/show_search_options.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-01 23:47:36 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-01 23:47:36 +0000
commitabc6eac0e3a28317f8114f78016cfb2b4753003d (patch)
tree39b7a55cb7ad45126d2cddc2f5aea09413ad1872 /templates/show_search_options.inc.php
parenta8f79bb8f4c222334fbb4d2a216260d0de44a7e3 (diff)
downloadampache-abc6eac0e3a28317f8114f78016cfb2b4753003d.tar.gz
ampache-abc6eac0e3a28317f8114f78016cfb2b4753003d.tar.bz2
ampache-abc6eac0e3a28317f8114f78016cfb2b4753003d.zip
maybe fix #404, unconfirmed implemented #405 other misc cleanup
Diffstat (limited to 'templates/show_search_options.inc.php')
-rw-r--r--templates/show_search_options.inc.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/show_search_options.inc.php b/templates/show_search_options.inc.php
index 57c1d9ae..d2e4919c 100644
--- a/templates/show_search_options.inc.php
+++ b/templates/show_search_options.inc.php
@@ -20,12 +20,18 @@
*/
?>
-<?php show_box_top(_('Options')); ?>
-<div id="search_options">
+<?php show_box_top(_('Options'),'info-box'); ?>
+<div id="information_actions">
<ul>
- <li><?php echo Ajax::text('?action=basket&type=browse_set&object_type=song',_('Add Search Results'),'add_search_results'); ?></li>
+<li>
+ <?php echo Ajax::button('?action=basket&type=browse_set&object_type=song','add',_('Add Search Results'),'add_search_results'); ?>
+ <?php echo _('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>
+<li>
+ <a href="<?php echo Config::get('web_path'); ?>/batch.php?action=browse"><?php echo get_user_icon('batch_download'); ?></a>
+ <?php echo _('Batch Download'); ?>
+</li>
<?php } ?>
</ul>
</div>