$uid = strip_tags(bigintval($_GET['uid']));
// Only allow numbers here...
- $chk = strip_tags(bigintval($_GET['check']));
-
- // .. only first 32 numbers
- $chk = substr($chk, 0, 32);
+ $chk = strip_tags(bigintval($_GET['check'], false));
// Check if link is not clicked so far
$result = SQL_QUERY_ESC("SELECT DISTINCT b.points, d.sex, d.surname, d.family, d.status
FROM "._MYSQL_PREFIX."_user_birthday AS b
LEFT JOIN "._MYSQL_PREFIX."_user_data AS d
ON b.userid=d.userid
-WHERE b.userid=%d AND b.chk_value='%s' LIMIT 1",
+WHERE b.userid=%d AND b.chk_value=%d LIMIT 1",
array($uid, $chk), __FILE__, __LINE__);
if (SQL_NUMROWS($result) == 1)
{
// Ok, congratulation again! Here's your gift from us...
- list($GIFT, $salut, $sname, $fname, $status) = SQL_FETCHROW($result);
+ list($gift, $salut, $sname, $fname, $status) = SQL_FETCHROW($result);
if ($status == "CONFIRMED")
{
// Set mode depending on how many mails the member has to confirm
// Add points to account
$DEPTH = 0;
- ADD_POINTS_REFSYSTEM($uid, $GIFT, false, "0", $locked, strtolower($_CONFIG['birthday_mode']));
+ ADD_POINTS_REFSYSTEM($uid, $gift, false, "0", $locked, strtolower($_CONFIG['birthday_mode']));
// Remove entry from table
$result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_birthday WHERE userid=%d LIMIT 1",
if (GET_EXT_VERSION("mediadata") >= "0.0.4")
{
// Update database
- MEDIA_UPDATE_ENTRY(array("total_points"), "add", $GIFT);
+ MEDIA_UPDATE_ENTRY(array("total_points"), "add", $gift);
}
// Transfer data to constants for the template
define('__SALUT', TRANSLATE_SEX($salut));
define('__SNAME', $sname);
define('__FNAME', $fname);
- define('__GIFT' , $GIFT);
+ define('__GIFT' , $gift);
// Load message from template
define('__MSG', LOAD_TEMPLATE("birthday_msg", true));
return $return;
}
// Does only allow numbers
-function bigintval($num)
+function bigintval($num, $castValue = true)
{
- $ret = (int) preg_replace("/[^0123456789]/", "", $num);
+ // Filter all numbers out
+ $ret = preg_replace("/[^0123456789]/", "", $num);
+
+ // Cast the value?
+ if ($castValue) $ret = (int) $ret;
+
+ // Return result
return $ret;
}
// Insert the code in $img_code into jpeg or PNG image