summaryrefslogtreecommitdiffstats
path: root/templates/show_add_shout.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_add_shout.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_add_shout.inc.php')
-rw-r--r--templates/show_add_shout.inc.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/show_add_shout.inc.php b/templates/show_add_shout.inc.php
index 739b1571..65314084 100644
--- a/templates/show_add_shout.inc.php
+++ b/templates/show_add_shout.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)
@@ -24,23 +24,23 @@
<form method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/shout.php?action=add_shout">
<table class="tabledata" cellpadding="0" cellspacing="0">
<tr>
- <td><strong><?php echo T_('Comment:'); ?></strong>
+ <td><strong><?php echo T_('Comment:'); ?></strong>
</tr>
<tr>
- <td><textarea rows="5" cols="70" name="comment"></textarea></td>
+ <td><textarea rows="5" cols="70" name="comment"></textarea></td>
</tr>
<?php if (Access::check('interface','50')) { ?>
<tr>
- <td><input type="checkbox" name="sticky" /> <strong><?php echo T_('Make Sticky'); ?></strong></td>
+ <td><input type="checkbox" name="sticky" /> <strong><?php echo T_('Make Sticky'); ?></strong></td>
</tr>
<?php } ?>
<tr>
- <td>
- <?php echo Core::form_register('add_shout'); ?>
- <input type="hidden" name="object_id" value="<?php echo $object->id; ?>" />
- <input type="hidden" name="object_type" value="<?php echo strtolower(get_class($object)); ?>" />
- <input type="submit" value="<?php echo T_('Create'); ?>" />
- </td>
+ <td>
+ <?php echo Core::form_register('add_shout'); ?>
+ <input type="hidden" name="object_id" value="<?php echo $object->id; ?>" />
+ <input type="hidden" name="object_type" value="<?php echo strtolower(get_class($object)); ?>" />
+ <input type="submit" value="<?php echo T_('Create'); ?>" />
+ </td>
</tr>
</table>
</form>