Skip to content
Merged

phpcs #227

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions webroot/panel/new_account.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
}
$USER->getPIGroup()->requestGroup($SEND_PIMESG_TO_ADMINS);
}
}
elseif (isset($_POST["cancel"])) {
} elseif (isset($_POST["cancel"])) {
foreach ($pending_requests as $request) {
if ($request["request_for"] == "admin") {
$USER->getPIGroup()->cancelGroupRequest();
Expand Down Expand Up @@ -69,7 +68,13 @@
<hr>
<p><strong>Requesting Ownership of PI Account/Group</strong></p>
<p>You will receive an email when your account has been approved.</p>
<p>Email <a href="mailto:<?php echo $CONFIG['mail']['support']; ?>"><?php echo $CONFIG['mail']['support_name']; ?></a> if you have not heard back in one business day. </p>
<p>
<?php
$addr = $CONFIG['mail']['support'];
$name = $CONFIG['mail']['support_name'];
echo "Email <a href='mailto:$addr'>$name</a> if you have not heard back in one business day.";
?>
</p>
<br>
<p><strong>Requesting Membership in a PI Group</strong></p>
<p>You will receive an email when your account has been approved by the PI.</p>
Expand Down
Loading