summaryrefslogtreecommitdiffstats
path: root/templates/show_catalogs.inc.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:00:32 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:38:46 -0500
commitef4d3660605efc7f1328d4533b0f4bfb6c1107e2 (patch)
treee4377fb129a899e65aaaf421f8c97098aecaedd5 /templates/show_catalogs.inc.php
parent8a750c3e875d590d351c3042570a134fcdf03e5d (diff)
downloadampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.gz
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.bz2
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.zip
Cosmetics: death to tabs
The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree.
Diffstat (limited to 'templates/show_catalogs.inc.php')
-rw-r--r--templates/show_catalogs.inc.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_catalogs.inc.php b/templates/show_catalogs.inc.php
index c9f8cedd..86ab877e 100644
--- a/templates/show_catalogs.inc.php
+++ b/templates/show_catalogs.inc.php
@@ -1,5 +1,5 @@
<?php
-/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
+/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
@@ -31,36 +31,36 @@
<col id="col_action" />
</colgroup>
<tr class="th-top">
- <th class="cel_catalog"><?php echo T_('Name'); ?></th>
- <th class="cel_path"><?php echo T_('Path'); ?></th>
- <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th>
- <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th>
- <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th>
- <th class="cel_action"><?php echo T_('Actions'); ?></th>
+ <th class="cel_catalog"><?php echo T_('Name'); ?></th>
+ <th class="cel_path"><?php echo T_('Path'); ?></th>
+ <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th>
+ <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th>
+ <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th>
+ <th class="cel_action"><?php echo T_('Actions'); ?></th>
</tr>
<?php
- foreach ($object_ids as $catalog_id) {
- $catalog = new Catalog($catalog_id);
- $catalog->format();
+ foreach ($object_ids as $catalog_id) {
+ $catalog = new Catalog($catalog_id);
+ $catalog->format();
?>
<tr class="<?php echo UI::flip_class(); ?>" id="catalog_<?php echo $catalog->id; ?>">
- <?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?>
+ <?php require Config::get('prefix') . '/templates/show_catalog_row.inc.php'; ?>
</tr>
<?php } ?>
<tr class="<?php echo UI::flip_class(); ?>">
<td colspan="6">
<?php if (!count($object_ids)) { ?>
- <span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span>
+ <span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span>
<?php } ?>
</td>
</tr>
<tr class="th-bottom">
- <th class="cel_catalog"><?php echo T_('Name'); ?></th>
- <th class="cel_path"><?php echo T_('Path'); ?></th>
- <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th>
- <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th>
- <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th>
- <th class="cel_action"><?php echo T_('Actions'); ?></th>
+ <th class="cel_catalog"><?php echo T_('Name'); ?></th>
+ <th class="cel_path"><?php echo T_('Path'); ?></th>
+ <th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th>
+ <th class="cel_lastadd"><?php echo T_('Last Add'); ?></th>
+ <th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th>
+ <th class="cel_action"><?php echo T_('Actions'); ?></th>
</tr>
</table>
<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>