diff options
Diffstat (limited to 'templates/show_users.inc.php')
-rw-r--r-- | templates/show_users.inc.php | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/show_users.inc.php b/templates/show_users.inc.php index ba3d7b84..55ede6fd 100644 --- a/templates/show_users.inc.php +++ b/templates/show_users.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) @@ -30,9 +30,9 @@ $web_path = Config::get('web_path'); <col id="col_lastseen" /> <col id="col_registrationdate" /> <col id="col_activity" /> - <?php if (Config::get('track_user_ip')) { ?> + <?php if (Config::get('track_user_ip')) { ?> <col id="col_lastip" /> - <?php } ?> + <?php } ?> <col id="col_action" /> <col id="col_online" /> </colgroup> @@ -41,32 +41,32 @@ $web_path = Config::get('web_path'); <th class="cel_lastseen"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=last_seen', T_('Last Seen'),'users_sort_lastseen'); ?></th> <th class="cel_registrationdate"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=create_date', T_('Registration Date'),'users_sort_createdate'); ?></th> <th class="cel_activity"><?php echo T_('Activity'); ?></th> - <?php if (Config::get('track_user_ip')) { ?> + <?php if (Config::get('track_user_ip')) { ?> <th class="cel_lastip"><?php echo T_('Last Ip'); ?></th> - <?php } ?> - <th class="cel_action"><?php echo T_('Action'); ?></th> + <?php } ?> + <th class="cel_action"><?php echo T_('Action'); ?></th> <th class="cel_online"><?php echo T_('On-line'); ?></th> </tr> <?php foreach ($object_ids as $user_id) { - $client = new User($user_id); - $client->format(); - $last_seen = $client->last_seen ? date("m\/d\/Y - H:i",$client->last_seen) : T_('Never'); - $create_date = $client->create_date ? date("m\/d\/Y - H:i",$client->create_date) : T_('Unknown'); + $client = new User($user_id); + $client->format(); + $last_seen = $client->last_seen ? date("m\/d\/Y - H:i",$client->last_seen) : T_('Never'); + $create_date = $client->create_date ? date("m\/d\/Y - H:i",$client->create_date) : T_('Unknown'); ?> <tr class="<?php echo UI::flip_class(); ?>" align="center" id="admin_user_<?php echo $client->id; ?>"> - <?php require Config::get('prefix') . '/templates/show_user_row.inc.php'; ?> + <?php require Config::get('prefix') . '/templates/show_user_row.inc.php'; ?> </tr> <?php } //end foreach users ?> <tr class="th-bottom"> - <th class="cel_username"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=fullname', T_('Fullname'),'users_sort_fullname1'); ?>( <?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=username', T_('Username'),'users_sort_username1');?>)</th> + <th class="cel_username"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=fullname', T_('Fullname'),'users_sort_fullname1'); ?>( <?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=username', T_('Username'),'users_sort_username1');?>)</th> <th class="cel_lastseen"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=last_seen', T_('Last Seen'),'users_sort_lastseen1'); ?></th> <th class="cel_registrationdate"><?php echo Ajax::text('?page=browse&action=set_sort&type=user&sort=create_date', T_('Registration Date'),'users_sort_createdate1'); ?></th> <th class="cel_activity"><?php echo T_('Activity'); ?></th> - <?php if (Config::get('track_user_ip')) { ?> + <?php if (Config::get('track_user_ip')) { ?> <th class="cel_lastip"><?php echo T_('Last Ip'); ?></th> - <?php } ?> - <th class="cel_action"><?php echo T_('Action'); ?></th> + <?php } ?> + <th class="cel_action"><?php echo T_('Action'); ?></th> <th class="cel_online"><?php echo T_('On-line'); ?></th> </tr> </table> |