Fix functionality-affecting typo in recommend_alter.php

Line 9 was $GroupIDi instead of $GroupID. The next few lines run an is_number check on $GroupID, which doesn't exist if the variable is called $GroupID. This makes me wonder how nobody noticed it until now, as the page shouldn't even work.
This commit is contained in:
MrPMan 2015-12-24 09:40:06 -08:00
parent 52828f71e0
commit 92949ba2c9

View File

@ -6,7 +6,7 @@
error(403); error(403);
} }
$GroupIDi = $_GET['groupid']; $GroupID = $_GET['groupid'];
if (!$GroupID || !is_number($GroupID)) { if (!$GroupID || !is_number($GroupID)) {
error(404); error(404);
} }