]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-register.php
Ticket resolved, code rewrites and caching:
[mailer.git] / inc / modules / guest / what-register.php
index 07be03e56d9c709fb446f50ebb890234cc157f21..ba46619ea6ffce593dabf7fdd7e5ba8d92c6b898 100644 (file)
@@ -195,11 +195,12 @@ if ((isset($_POST['ok'])) && ((!$FAILED) || (IS_ADMIN()))) {
        } // END - if
 
        // Check if I shall disable sending mail to newly registered members out about active/begging rallye
+       // @TODO Rewrite this to a single filter
        //
        // First comes first: begging rallye
        if (GET_EXT_VERSION("beg") >= "0.1.7") {
                // Okay, shall I disable now?
-               if (getConfig('beg_new_mem_notify') == "N") {
+               if (getConfig('beg_new_mem_notify') != "Y") {
                        $ADD1 .= ", beg_ral_notify, beg_ral_en_notify";
                        $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
                } // END - if
@@ -208,7 +209,7 @@ if ((isset($_POST['ok'])) && ((!$FAILED) || (IS_ADMIN()))) {
        // Second: active rallye
        if (GET_EXT_VERSION("bonus") >= "0.7.7") {
                // Okay, shall I disable now?
-               if (getConfig('bonus_new_mem_notify') == "N") {
+               if (getConfig('bonus_new_mem_notify') != "Y") {
                        $ADD1 .= ", bonus_ral_notify, bonus_ral_en_notify";
                        $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
                } // END - if
@@ -300,7 +301,7 @@ VALUES ('%s','%s','%s','%s','%s',%s,'%s','%s',%s, %s,%s,'%s',%s, %s,'%s','UNCONF
        $gender = TRANSLATE_GENDER($_POST['gender']);
 
        // ... rewrite a zero referal ID to the main title
-       if ($_POST['refid'] == "0") $_POST['refid'] = MAIN_TITLE;
+       if ($_POST['refid'] == "0") $_POST['refid'] = constant('MAIN_TITLE');
 
        // Is ZIP code set?
        if (!empty($_POST['zip'])) {