diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-12 07:45:01 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-12 07:45:01 +0000 |
commit | 0b39cf3100870d54e13039a4e5d8635f121df4ab (patch) | |
tree | 44a4d54aa9e1dc2f0f7484d74fe367a868ac40a1 /templates/show_admin_tools.inc.php | |
parent | 65929b1bcc5e8692dd6e716d3066fbd92d754a26 (diff) | |
download | ampache-0b39cf3100870d54e13039a4e5d8635f121df4ab.tar.gz ampache-0b39cf3100870d54e13039a4e5d8635f121df4ab.tar.bz2 ampache-0b39cf3100870d54e13039a4e5d8635f121df4ab.zip |
few minor fixes including a XML-RPC fix
Diffstat (limited to 'templates/show_admin_tools.inc.php')
-rw-r--r-- | templates/show_admin_tools.inc.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/show_admin_tools.inc.php b/templates/show_admin_tools.inc.php index b604ae32..b68c8631 100644 --- a/templates/show_admin_tools.inc.php +++ b/templates/show_admin_tools.inc.php @@ -25,7 +25,7 @@ $catalogs = $catalog->get_catalogs(); ?> <?php show_box_top(_('Catalogs')); ?> -<table border="0" cellpadding="0" cellspacing="0"> +<table class="tabledata" cellpadding="0" cellspacing="0"> <tr class="table-header"> <th><?php echo _('Name'); ?></th> <th align="center"><?php echo _('Action'); ?></th> @@ -50,6 +50,14 @@ $catalogs = $catalog->get_catalogs(); <?php echo _('Delete'); ?></a> </td> </tr> +<!-- +<tr class="<?php echo flip_class(); ?>"> + <td colspan="2"> + <?php echo _('Fast'); ?><input type="checkbox" name="fast" value="1" /> + <?php echo _('Gather Art'); ?><input type="checkbox" name="gather_art" value="1" /> + </td> +</tr> +--> <?php } // end foreach ?> <?php if (!count($catalogs)) { ?> <tr> @@ -74,10 +82,8 @@ $catalogs = $catalog->get_catalogs(); <div class="text-action"> <a href="<?php echo $web_path; ?>/admin/duplicates.php"><?php echo _('Show Duplicate Songs'); ?></a> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=clear_now_playing"><?php echo _('Clear Now Playing'); ?></a> - <hr noshade="noshade" size="3" /> <a href="<?php echo $web_path; ?>/admin/system.php?action=generate_config"><?php echo _('Generate New Config'); ?></a> <a href="<?php echo $web_path; ?>/admin/preferences.php?action=show_set_preferences"><?php echo _('Preferences Permissions'); ?></a> - <hr noshade="noshade" size="3" /> <a href="<?php echo $web_path; ?>/admin/system.php?action=export&export=itunes"><?php echo _('Export To Itunes DB'); ?></a> <!-- <a href="<?php echo $web_path; ?>/admin/system.php?action=check_version"><?php echo _('Check for New Version'); ?></a>--> </div> |