forked from science-ation/science-ation
show pendingemail in school list if email isnt set (and let them know its unconfirmed)
show "no name set" in school list if the name (firstname." ".lastname) is blank
This commit is contained in:
parent
5270935d3b
commit
43283059ae
@ -571,12 +571,21 @@ $(document).ready(function() {
|
||||
if($r->sciencehead_uid > 0) {
|
||||
$sh = user_load($r->sciencehead_uid);
|
||||
$sciencehead = $sh['name'];
|
||||
if(!$sciencehead) $sciencehead="<i>no name set</i>";
|
||||
// print_r($sh);
|
||||
$sha=account_load($sh['accounts_id']);
|
||||
$scienceheademail=$sha['email'];
|
||||
if($sha['email']) {
|
||||
$scienceheademail=$sha['email'];
|
||||
$pending="";
|
||||
}
|
||||
else {
|
||||
$scienceheademail=$sha['pendingemail'];
|
||||
$pending="(unconfirmed)";
|
||||
}
|
||||
|
||||
}
|
||||
echo " <td>$sciencehead</td>\n";
|
||||
echo " <td><a href=\"mailto:$scienceheademail\">$scienceheademail</a></td>\n";
|
||||
echo " <td><a href=\"mailto:$scienceheademail\">$scienceheademail</a> $pending</td>\n";
|
||||
if($config['participant_registration_type']=="schoolpassword")
|
||||
echo " <td>$r->registration_password</td>\n";
|
||||
echo " <td>$r->accesscode</td>\n";
|
||||
|
Loading…
Reference in New Issue
Block a user