Display user manager link in the contact form

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-21 19:45:12 +00:00
committed by WineHQ
parent 2af11e7333
commit 8093a81da2

View File

@@ -36,6 +36,15 @@ if(!$aClean['sSubmit'])
echo $error; echo $error;
echo "<form action=\"".$_SERVER['PHP_SELF']."\" method=\"post\">"; echo "<form action=\"".$_SERVER['PHP_SELF']."\" method=\"post\">";
/* User manager */
if($_SESSION['current']->hasPriv("admin"))
{
echo "<p><a href=\"".BASE."preferences.php?iUserId=".
$oRecipient->iUserId."&sSearch=Administrator&iLimit".
"=100&sOrderBy=email\">User manager</a></p>";
}
echo "<p>E-mail $oRecipient->sRealname.</p>"; echo "<p>E-mail $oRecipient->sRealname.</p>";
echo html_table_begin("width\"100%\" border=\"0\" cellpadding=\"2\"". echo html_table_begin("width\"100%\" border=\"0\" cellpadding=\"2\"".
"cellspacing=\"2\""); "cellspacing=\"2\"");