summaryrefslogtreecommitdiffstats
path: root/templates/show_playlist_songs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_playlist_songs.inc.php')
-rw-r--r--templates/show_playlist_songs.inc.php48
1 files changed, 24 insertions, 24 deletions
diff --git a/templates/show_playlist_songs.inc.php b/templates/show_playlist_songs.inc.php
index 01257804..8d7fa0e8 100644
--- a/templates/show_playlist_songs.inc.php
+++ b/templates/show_playlist_songs.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)
@@ -37,44 +37,44 @@ $web_path = Config::get('web_path');
<col id="col_action" />
</colgroup>
<tr class="th-top">
- <th class="cel_add">&nbsp;</th>
- <th class="cel_track"><?php echo T_('Track'); ?></th>
- <th class="cel_song"><?php echo T_('Song Title'); ?></th>
- <th class="cel_artist"><?php echo T_('Artist'); ?></th>
- <th class="cel_album"><?php echo T_('Album'); ?></th>
- <th class="cel_genre"><?php echo T_('Genre'); ?></th>
- <th class="cel_track"><?php echo T_('Track'); ?></th>
- <th class="cel_time"><?php echo T_('Time'); ?></th>
+ <th class="cel_add">&nbsp;</th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_song"><?php echo T_('Song Title'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_genre"><?php echo T_('Genre'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_time"><?php echo T_('Time'); ?></th>
<?php if (Config::get('ratings')) {
Rating::build_cache('song', array_map(create_function('$i', 'return $i[\'object_id\'];'), $object_ids));
?>
<th class="cel_rating"><?php echo T_('Rating'); ?></th>
<?php } ?>
- <th class="cel_action"><?php echo T_('Action'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
<?php
- foreach ($object_ids as $object) {
- $song = new Song($object['object_id']);
- $song->format();
- $playlist_track = $object['track'];
+ foreach ($object_ids as $object) {
+ $song = new Song($object['object_id']);
+ $song->format();
+ $playlist_track = $object['track'];
?>
<tr class="<?php echo UI::flip_class(); ?>" id="track_<?php echo $object['track_id']; ?>">
- <?php require Config::get('prefix') . '/templates/show_playlist_song_row.inc.php'; ?>
+ <?php require Config::get('prefix') . '/templates/show_playlist_song_row.inc.php'; ?>
</tr>
<?php } ?>
<tr class="th-bottom">
- <th class="cel_add">&nbsp;</th>
- <th class="cel_track"><?php echo T_('Track'); ?></th>
- <th class="cel_song"><?php echo T_('Song Title'); ?></th>
- <th class="cel_artist"><?php echo T_('Artist'); ?></th>
- <th class="cel_album"><?php echo T_('Album'); ?></th>
- <th class="cel_genre"><?php echo T_('Genre'); ?></th>
- <th class="cel_track"><?php echo T_('Track'); ?></th>
- <th class="cel_time"><?php echo T_('Time'); ?></th>
+ <th class="cel_add">&nbsp;</th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_song"><?php echo T_('Song Title'); ?></th>
+ <th class="cel_artist"><?php echo T_('Artist'); ?></th>
+ <th class="cel_album"><?php echo T_('Album'); ?></th>
+ <th class="cel_genre"><?php echo T_('Genre'); ?></th>
+ <th class="cel_track"><?php echo T_('Track'); ?></th>
+ <th class="cel_time"><?php echo T_('Time'); ?></th>
<?php if (Config::get('ratings')) { ?>
<th class="cel_rating"><?php echo T_('Rating'); ?></th>
<?php } ?>
- <th class="cel_action"><?php echo T_('Action'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
</table>
<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>