X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=4b34282a65e9fbc606c9057b698d6618fd81e609;hp=68003f01f8b5cfb76fec7112b21f04a6ed9a609c;hb=2e68ea39a430a7217e58747b877acaa3e92ea997;hpb=6c763653e88b9d10627e651ca59c7201d4b7d62b diff --git a/ref.php b/ref.php index 68003f01f8..4b34282a65 100644 --- a/ref.php +++ b/ref.php @@ -47,7 +47,7 @@ require("inc/config.php"); // Redirect only to registration page when this script is installed if (isBooleanConstantAndTrue('mxchange_installed')) { // Base URL for redirection - switch ($_CONFIG['refid_target']) + switch (getConfig('refid_target')) { case "register": $URL = URL."/modules.php?module=index&what=register&refid="; @@ -93,7 +93,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Is the refid valid? if ($ref > 0) { // Update ref counter - $result = SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET ref_clicks=ref_clicks+1 WHERE userid=%s LIMIT 1", + SQL_QUERY_ESC("UPDATE `"._MYSQL_PREFIX."_user_data` SET ref_clicks=ref_clicks+1 WHERE userid=%s LIMIT 1", array(bigintval($ref)), __FILE__, __LINE__); } // END - if } else {