summaryrefslogtreecommitdiffstats
path: root/templates/show_users.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-09-24 19:49:38 +0000
committerspocky <spocky@ampache>2007-09-24 19:49:38 +0000
commit0dce31de404c46555b0c0d9c58297b506e50e4f8 (patch)
tree803d317fff41537473c0d1ae77d971ab82df3f67 /templates/show_users.inc.php
parenta3d16d1cd6ec1b2fbba373177468a91a6ab49c99 (diff)
downloadampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.gz
ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.bz2
ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.zip
- Cleaned up php files (removed useless inlines styles, replaced header td with th...)
- Cleaned up css (removed some unused classes) - Changed quick search size and added ability to customize it - Removed width=100% in preferences tables - Corrected missing closing tag in sidebar - Minor corrections
Diffstat (limited to 'templates/show_users.inc.php')
-rw-r--r--templates/show_users.inc.php48
1 files changed, 25 insertions, 23 deletions
diff --git a/templates/show_users.inc.php b/templates/show_users.inc.php
index d2571cbe..8b44a75f 100644
--- a/templates/show_users.inc.php
+++ b/templates/show_users.inc.php
@@ -22,35 +22,37 @@
$web_path = Config::get('web_path');
?>
-<table class="tabledata" cellpadding="0" cellspacing="0" border="0">
+<table class="tabledata" cellpadding="0" cellspacing="0">
<tr class="table-header" align="center">
- <td colspan="11">
+ <th colspan="11">
<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?>
- </td>
+ </th>
</tr>
<tr class="table-header">
- <td align="center">
- <b><?php echo _('Fullname'); ?></b>
- <b>(<?php echo _('Username'); ?>)</b>
- </td>
- <td align="center">
- <b><?php echo _('Last Seen'); ?></b>
- </td>
- <td align="center">
- <b><?php echo _('Registration Date'); ?></b>
- </td>
- <td align="center">
- <b><?php echo _('Activity'); ?></b>
- </td>
+ <th>
+ <?php echo _('Fullname'); ?>
+ (<?php echo _('Username'); ?>)
+ </th>
+ <th>
+ <?php echo _('Last Seen'); ?>
+ </th>
+ <th>
+ <?php echo _('Registration Date'); ?>
+ </th>
+ <th>
+ <?php echo _('Activity'); ?>
+ </th>
<?php if (Config::get('track_user_ip')) { ?>
- <td align="center">
- <b><?php echo _('Last Ip'); ?></b>
- </td>
+ <th>
+ <?php echo _('Last Ip'); ?>
+ </th>
<?php } ?>
- <td align="center"><strong><?php echo _('Action'); ?></strong></td>
- <td align="center">
- <b><?php echo _('On-line'); ?></b>
- </td>
+ <th>
+ <?php echo _('Action'); ?>
+ </th>
+ <th>
+ <?php echo _('On-line'); ?>
+ </th>
</tr>
<?php
foreach ($object_ids as $user_id) {