forked from science-ation/science-ation
Pass in the registrations id for the user
This commit is contained in:
parent
39dd0e6897
commit
42ba7a3db9
@ -76,7 +76,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statusstudent=studentsStatus();
|
||||
$statusstudent=studentsStatus($u['registrations_id']);
|
||||
echo outputStatus($statusstudent);
|
||||
echo "</td></tr>";
|
||||
|
||||
@ -89,7 +89,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statusemergencycontact=emergencycontactStatus();
|
||||
$statusemergencycontact=emergencycontactStatus($u['registrations_id']);
|
||||
echo outputStatus($statusemergencycontact);
|
||||
echo "</td></tr>";
|
||||
|
||||
@ -102,7 +102,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statusproject=projectStatus();
|
||||
$statusproject=projectStatus($u['registrations_id']);
|
||||
echo outputStatus($statusproject);
|
||||
echo "</td></tr>";
|
||||
|
||||
@ -114,7 +114,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statusmentor=mentorStatus();
|
||||
$statusmentor=mentorStatus($u['registrations_id']);
|
||||
echo outputStatus($statusmentor);
|
||||
echo "</td></tr>";
|
||||
}
|
||||
@ -130,7 +130,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statussafety=safetyStatus();
|
||||
$statussafety=safetyStatus($u['registrations_id']);
|
||||
echo outputStatus($statussafety);
|
||||
echo "</td></tr>";
|
||||
|
||||
@ -141,7 +141,7 @@ echo "<table><tr><td>";
|
||||
echo "</a>";
|
||||
echo "</td><td>";
|
||||
//check to see if its complete
|
||||
$statustour=tourStatus();
|
||||
$statustour=tourStatus($u['registrations_id']);
|
||||
echo outputStatus($statustour);
|
||||
echo "</td></tr>";
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user