X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid_top.php;h=0731b9b531d4de025c97dc1ce448598aa8b0dd1f;hp=eb1ed8657a07a92ea73a4e010581c4fbd877f831;hb=82dcf972777053767f82154d7d89700f9ba55736;hpb=60494e212a67fe360bfbb481eb4928480a6f379b diff --git a/mailid_top.php b/mailid_top.php index eb1ed8657a..0731b9b531 100644 --- a/mailid_top.php +++ b/mailid_top.php @@ -44,7 +44,7 @@ $GLOBALS['module'] = "mailid"; $CSS = "0"; // Load the required file(s) require ("inc/config.php"); -if (defined('mxchange_installed') && (mxchange_installed)) +if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_installed'))) { // Is the extension active if (!EXT_IS_ACTIVE("mailid", true)) { @@ -100,7 +100,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) list($pool, $sender, $notify) = SQL_FETCHROW($result_mailid); // Correct notification switch in non-bonus mails - if (($notify != 'Y') && ($notify != 'N')) $notify = 'N'; + if (($notify != "Y") && ($notify != "N")) $notify = "N"; // Free some memory SQL_FREERESULT($result_mailid); @@ -212,7 +212,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) if (bigintval($_POST['gfx_check']) == $img_code) { // Right code entered add points and remove entry - if (($ref_pay > 0) && ($_CONFIG['allow_direct_pay'] == 'N')) + if (($ref_pay > 0) && ($_CONFIG['allow_direct_pay'] == "N")) { // Don't add points over the referral system $locked = true; @@ -237,10 +237,10 @@ if (defined('mxchange_installed') && (mxchange_installed)) if ((GET_EXT_VERSION("bonus") >= "0.2.2") && (function_exists('BONUS_ADD_TURBO_POINTS'))) { // Is an active-rallye running and this is not a notification mail? - if (($_CONFIG['bonus_active'] == 'Y') && ($notify == 'N')) + if (($_CONFIG['bonus_active'] == "Y") && ($notify == "N")) { // Shall I exclude the webmaster's own userid from the active-rallye? - if (((($_CONFIG['bonus_uid'] == $url_uid) && ($_CONFIG['bonus_include_own'] == 'Y')) || ($_CONFIG['bonus_uid'] != $url_uid)) && ($_CONFIG['def_refid'] != $url_uid)) + if (((($_CONFIG['bonus_uid'] == $url_uid) && ($_CONFIG['bonus_include_own'] == "Y")) || ($_CONFIG['bonus_uid'] != $url_uid)) && ($_CONFIG['def_refid'] != $url_uid)) { // Add points and remember ranking are done in this function.... BONUS_ADD_TURBO_POINTS($DATA, $url_uid, $type);