summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay_instances.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_localplay_instances.inc.php')
-rw-r--r--templates/show_localplay_instances.inc.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/templates/show_localplay_instances.inc.php b/templates/show_localplay_instances.inc.php
index 755744b7..6972479f 100644
--- a/templates/show_localplay_instances.inc.php
+++ b/templates/show_localplay_instances.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)
@@ -23,22 +23,22 @@
<?php UI::show_box_top(T_('Show Localplay Instances'), 'box box_localplay_instances'); ?>
<table cellpadding="3" cellspacing="0" class="tabledata">
<tr>
- <?php foreach ($fields as $key=>$field) { ?>
- <th><?php echo $field['description']; ?></th>
- <?php } ?>
- <th><?php echo T_('Action'); ?></th>
+ <?php foreach ($fields as $key=>$field) { ?>
+ <th><?php echo $field['description']; ?></th>
+ <?php } ?>
+ <th><?php echo T_('Action'); ?></th>
</tr>
<?php foreach ($instances as $uid=>$name) {
- $instance = $localplay->get_instance($uid);
+ $instance = $localplay->get_instance($uid);
?>
<tr class="<?php echo UI::flip_class(); ?>" id="localplay_instance_<?php echo $uid; ?>">
- <?php foreach ($fields as $key=>$field) { ?>
- <td><?php echo $instance[$key]; ?></td>
- <?php } ?>
- <td>
- <a href="<?php echo Config::get('web_path'); ?>/localplay.php?action=edit_instance&instance=<?php echo $uid; ?>"><?php echo UI::get_icon('edit', T_('Edit Instance')); ?></a>
- <?php echo Ajax::button('?page=localplay&action=delete_instance&instance=' . $uid,'delete', T_('Delete'),'delete_instance_' . $uid); ?>
- </td>
+ <?php foreach ($fields as $key=>$field) { ?>
+ <td><?php echo $instance[$key]; ?></td>
+ <?php } ?>
+ <td>
+ <a href="<?php echo Config::get('web_path'); ?>/localplay.php?action=edit_instance&instance=<?php echo $uid; ?>"><?php echo UI::get_icon('edit', T_('Edit Instance')); ?></a>
+ <?php echo Ajax::button('?page=localplay&action=delete_instance&instance=' . $uid,'delete', T_('Delete'),'delete_instance_' . $uid); ?>
+ </td>
</tr>
<?php } ?>
</table>