Skip to content
Snippets Groups Projects
Commit fbac2096 authored by Kit Manners's avatar Kit Manners
Browse files

Fix retrieving student number

parent 3eb75c79
No related branches found
No related tags found
3 merge requests!71Tidy up branches (3/3),!69Tidy up branches (1/3),!66Fix retrieving student number
......@@ -52,7 +52,7 @@ if (isset($_REQUEST['signupid']) && isset($_REQUEST['signuppw'])) {
$smarty->assign("signuppw", $signuppw);
// pass on the student id if it exists
if (isset($_REQUEST['signupsid'])) {
$smarty->assign("signupsid", $signupsid);
$smarty->assign("signupsid", $_REQUEST['signupsid']);
}
$smarty->assign("overridable", $overridable);
$smarty->assign("usertype", $row[type]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment