mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-30 16:01:24 +00:00
29d34a6894
seems to work now.
21 lines
No EOL
495 B
PHP
21 lines
No EOL
495 B
PHP
<?
|
|
function planUsers ()
|
|
{
|
|
need ('boxes feature plan');
|
|
|
|
featureOpen ('Users with Plans');
|
|
if (is_array ($users = usersWithPlans ())) {
|
|
foreach ($users as $user) {
|
|
$displayName = $user['u_displayname'];
|
|
$userName = $user['u_username'];
|
|
echo '<P><A class="planUser" href="' . thisURL . "/$userName/"
|
|
.'">' . $displayName . '</A></P>';
|
|
}
|
|
} else {
|
|
echo '<P>Sorry, no users have posted Plan entries at this time.</P>';
|
|
}
|
|
featureClose ();
|
|
}
|
|
|
|
planUsers ();
|
|
?>
|