Ajoute un lien vers la Mailing-List pour l'admin AlternC

This commit is contained in:
Alan Garcia 2012-10-29 09:08:24 +00:00
parent 78bbe0ee1b
commit 41feeb943b
1 changed files with 9 additions and 4 deletions

View File

@ -88,19 +88,24 @@ if($admin->enabled) {
echo "<h2>" . _("Expired or about to expire accounts") . "</h2>\n";
echo "<table cellspacing=\"2\" cellpadding=\"4\">\n";
echo "<tr><th>"._("uid")."</th><th>"._("Last name, surname")."</th><th>"._("Expiry")."</th></tr>\n";
if (is_array($expiring)) {
if (is_array($expiring)) {
foreach($expiring as $account) {
echo "<tr class=\"exp{$account['status']}\"><td>{$account['uid']}</td>";
if($admin->checkcreator($account['uid']))
echo "<td><a href=\"adm_edit.php?uid={$account['uid']}\">{$account['nom']}, {$account['prenom']}</a></td>";
else
echo "<td>{$account['nom']}, {$account['prenom']}</td>";
echo "<td>{$account['expiry']}</td></tr>\n";
echo "<td>{$account['expiry']}</td></tr>\n";
}
}
}
echo "</table>\n";
}
}
echo "<hr/><p>";
__("You are using the AlternC Panel. You can contact the AlternC community for informations or feedback by joigning the mailing-list");
echo "&nbsp;<a target=_blank href='http://lists.alternc.org/listinfo/users'>users@alternc.org</a>";
echo "</p>";
} // if $admin->enabled
$c = $admin->get($cuid);