diff options
author | mywindow <mywindow@gmail.com> | 2011-09-12 16:16:12 -0600 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-09-19 13:40:25 -0400 |
commit | c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84 (patch) | |
tree | cecbcb95b7194c85384d1d94f2e184ecb61094c5 /templates/show_add_catalog.inc.php | |
parent | 99fd9d7fe22a8aa81b3f54c2edbcabf95e2526d4 (diff) | |
download | ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.tar.gz ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.tar.bz2 ampache-c3b6ef7ad2e888fd228f62ed3cef6f7d55070a84.zip |
Added class names to generic box names.
Diffstat (limited to 'templates/show_add_catalog.inc.php')
-rw-r--r-- | templates/show_add_catalog.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_add_catalog.inc.php b/templates/show_add_catalog.inc.php index ed4f2054..6d4a9aad 100644 --- a/templates/show_add_catalog.inc.php +++ b/templates/show_add_catalog.inc.php @@ -29,7 +29,7 @@ $default_rename = "%a - %T - %t"; $default_sort = "%a/%A"; ?> -<?php show_box_top(_('Add a Catalog')); ?> +<?php show_box_top(_('Add a Catalog'), 'box box_add_catalog'); ?> <p><?php echo _("In the form below enter either a local path (i.e. /data/music) or the URL to a remote Ampache installation (i.e http://theotherampache.com)"); ?></p> <?php Error::display('general'); ?> <form name="update_catalog" method="post" action="<?php echo Config::get('web_path'); ?>/admin/catalog.php" enctype="multipart/form-data"> @@ -37,7 +37,7 @@ $default_sort = "%a/%A"; <tr> <td><?php echo _('Catalog Name'); ?>: </td> <td><input size="60" type="text" name="name" value="<?php echo scrub_out($_POST['name']); ?>" /></td> - <td style="vertical-align:top; font-family: monospace;" rowspan="6"> + <td style="vertical-align:top; font-family: monospace;" rowspan="6" id="patterns_example"> <strong><?php echo _('Auto-inserted Fields'); ?>:</strong><br /> %A = <?php echo _('album name'); ?><br /> %a = <?php echo _('artist name'); ?><br /> |