mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-31 02:21:36 +00:00
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:
parent
52828f71e0
commit
92949ba2c9
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user