diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
commit | 1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc (patch) | |
tree | 54655ff3e692a71a17f1d37cd97374b263557ca1 /templates/show_duplicates.inc.php | |
parent | ef48bf3fbdca2a4d25f5d025f4c6ad23905e5369 (diff) | |
download | ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.gz ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.bz2 ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.zip |
Cosmetics: remove trailing whitespace
Diffstat (limited to 'templates/show_duplicates.inc.php')
-rw-r--r-- | templates/show_duplicates.inc.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/show_duplicates.inc.php b/templates/show_duplicates.inc.php index acc5c209..d22552a6 100644 --- a/templates/show_duplicates.inc.php +++ b/templates/show_duplicates.inc.php @@ -32,7 +32,7 @@ <col id="col_bitrate" /> <col id="col_size" /> <col id="col_filename" /> -</colgroup> +</colgroup> <tr class="th-top"> <th class="cel_disable"><?php echo _('Disable'); ?></th> <th class="cel_song"><?php echo _('Song'); ?></th> @@ -43,18 +43,18 @@ <th class="cel_size"><?php echo _('Size'); ?></th> <th class="cel_filename"><?php echo _('Filename'); ?></th> </tr> -<?php +<?php foreach ($duplicates as $item) { // Gather the duplicates $songs = Catalog::get_duplicate_info($item,$search_type); foreach ($songs as $key=>$song_id) { - $song = new Song($song_id); - $song->format(); + $song = new Song($song_id); + $song->format(); $row_key = 'duplicate_' . $song_id; $button_flip_state_id = 'button_flip_state_' . $song_id; - $current_class = ($key == '0') ? 'row-highlight' : flip_class(); - $button = $song->enabled ? 'disable' : 'enable'; + $current_class = ($key == '0') ? 'row-highlight' : flip_class(); + $button = $song->enabled ? 'disable' : 'enable'; ?> <tr id="<?php echo $row_key; ?>" class="<?php echo $current_class; ?>"> <td class="cel_disable" id="<?php echo($button_flip_state_id); ?>"> @@ -68,8 +68,8 @@ <td class="cel_size"><?php echo $song->f_size; ?>MB</td> <td class="cel_filename"><?php echo scrub_out($song->file); ?></td> </tr> -<?php - } // end foreach ($dinfolist as $dinfo) +<?php + } // end foreach ($dinfolist as $dinfo) } // end foreach ($flags as $flag) ?> <tr class="th-bottom"> |