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_user.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_user.inc.php')
-rw-r--r-- | templates/show_user.inc.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/templates/show_user.inc.php b/templates/show_user.inc.php index b126d6bd..062b37eb 100644 --- a/templates/show_user.inc.php +++ b/templates/show_user.inc.php @@ -22,7 +22,7 @@ */ $last_seen = $client->last_seen ? date("m\/d\/y - H:i",$client->last_seen) : _('Never'); $create_date = $client->create_date ? date("m\/d\/y - H:i",$client->create_date) : _('Unknown'); -$client->format(); +$client->format(); ?> <?php show_box_top($client->fullname); ?> <table cellspacing="0"> @@ -37,18 +37,18 @@ $client->format(); <?php } else { ?> <i style="color:red;"><?php echo _('User is Offline Now'); ?></i> <?php } ?> - + </td> <td valign="top"> <h2><?php echo _('Active Playlist'); ?></h2> <div style="padding-left:10px;"> - <?php - $tmp_playlist = new tmpPlaylist(tmpPlaylist::get_from_userid($client->id)); - $object_ids = $tmp_playlist->get_items(); - foreach ($object_ids as $object_data) { - $type = array_shift($object_data); - $object = new $type(array_shift($object_data)); - $object->format(); + <?php + $tmp_playlist = new tmpPlaylist(tmpPlaylist::get_from_userid($client->id)); + $object_ids = $tmp_playlist->get_items(); + foreach ($object_ids as $object_data) { + $type = array_shift($object_data); + $object = new $type(array_shift($object_data)); + $object->format(); ?> <?php echo $object->f_link; ?><br /> <?php } ?> @@ -57,8 +57,8 @@ $client->format(); </tr> </table> <?php show_box_bottom(); ?> -<?php - $data = Song::get_recently_played($client->id); - require Config::get('prefix') . '/templates/show_recently_played.inc.php'; +<?php + $data = Song::get_recently_played($client->id); + require Config::get('prefix') . '/templates/show_recently_played.inc.php'; ?> |