X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-sponsor_reg.php;h=d0d9fff8bbe604188c307bbc9fc9abd278c0670c;hp=cd23e6eda3bad9217a1119aca2670f6ab85f9d1e;hb=0715fa7aa8e5e70bcf1d957fb09ae655c3896c4e;hpb=c2e17d983fcbc0c3bd1dd37908d87c678f0367df diff --git a/inc/modules/guest/what-sponsor_reg.php b/inc/modules/guest/what-sponsor_reg.php index cd23e6eda3..d0d9fff8bb 100644 --- a/inc/modules/guest/what-sponsor_reg.php +++ b/inc/modules/guest/what-sponsor_reg.php @@ -1,7 +1,7 @@ 0) unsetPostRequestElement('ok'); + if (count($FORM_ERRORS) > 0) unsetPostRequestParameter('ok'); } if ((isFormSent()) && (count($FORM_ERRORS) == 0)) { @@ -209,17 +210,17 @@ if ((isFormSent()) && (count($FORM_ERRORS) == 0)) { $result = SQL_QUERY_ESC("SELECT (`pay_rate` * `pay_min_count`) AS points, `pay_min_count` AS pay, `pay_currency` AS curr FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` WHERE `id`='%s' LIMIT 1", - array(postRequestElement('pay_type')), __FILE__, __LINE__); + array(postRequestParameter('pay_type')), __FILE__, __LINE__); list($points, $pay, $curr) = SQL_FETCHROW($result); // Free memory SQL_FREERESULT($result); // Add points to array - postRequestElement('points_amount', $points); - postRequestElement('points_used' , '0.00000'); - postRequestElement('last_pay' , $pay); - postRequestElement('last_curr' , $curr); + postRequestParameter('points_amount', $points); + postRequestParameter('points_used' , '0.00000'); + postRequestParameter('last_pay' , $pay); + postRequestParameter('last_curr' , $curr); // Register sponsor but never ever update here! $STATUS = handlSponsorRequest(postRequestArray(), true, $messageArray, true); @@ -227,26 +228,26 @@ WHERE `id`='%s' LIMIT 1", // Check the status of the registration process switch ($STATUS) { case 'added': // Sponsor successfully added with account status = UNCONFIRMED! - // Check for his ID number + // Check for his id number $result = SQL_QUERY_ESC("SELECT `id`, `hash` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `email`='%s' LIMIT 1", - array(postRequestElement('email')), __FILE__, __LINE__); + array(postRequestParameter('email')), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { - // ID found so let's load it for the confirmation email + // id found so let's load it for the confirmation email list($id, $hash) = SQL_FETCHROW($result); // Prepare data for the email template $content['id'] = $id; $content['hash'] = $hash; - $content['email'] = secureString(postRequestElement('email')); - $content['surname'] = secureString(postRequestElement('surname')); - $content['family'] = secureString(postRequestElement('family')); - $content['gender'] = translateGender(postRequestElement('gender')); + $content['email'] = secureString(postRequestParameter('email')); + $content['surname'] = secureString(postRequestParameter('surname')); + $content['family'] = secureString(postRequestParameter('family')); + $content['gender'] = translateGender(postRequestParameter('gender')); $content['timestamp'] = generateDateTime(time(), 0); - $content['password'] = secureString(postRequestElement('pass1')); + $content['password'] = secureString(postRequestParameter('pass1')); // Generate email and send it to the new sponsor $message = loadEmailTemplate('sponsor_confirm', $hash); - sendEmail(postRequestElement('email'), getMessage('SPONSOR_PLEASE_CONFIRM_SUBJ'), $message); + sendEmail(postRequestParameter('email'), getMessage('SPONSOR_PLEASE_CONFIRM_SUBJ'), $message); // Send mail to admin sendAdminNotification(getMessage('ADMIN_NEW_SPONSOR'), 'admin_sponsor_reg', $hash); @@ -255,7 +256,7 @@ WHERE `id`='%s' LIMIT 1", $message = $messageArray['added']; } else { // Sponsor account not found??? - $message = sprintf(getMessage('SPONSOR_EMAIL_404'), postRequestElement('email')); + $message = getMaskedMessage('SPONSOR_EMAIL_404', postRequestParameter('email')); } // Free memory @@ -266,10 +267,10 @@ WHERE `id`='%s' LIMIT 1", logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s detected.", $STATUS)); if (!isAdmin()) { // Message for testing admin - $message = sprintf(getMessage('ADMIN_SPONSOR_UNKNOWN_STATUS'), $STATUS); + $message = getMaskedMessage('ADMIN_SPONSOR_UNKNOWN_STATUS', $STATUS); } else { // Message for the guest - $message = sprintf(getMessage('SPONSOR_UNKNOWN_STATUS'), $STATUS); + $message = getMaskedMessage('SPONSOR_UNKNOWN_STATUS', $STATUS); } break; } @@ -284,7 +285,7 @@ ORDER BY `pay_name`", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Load all types... // @TODO Swap this HTML code to templates - $OUT = "\n"; + $OUT = "
\n"; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare content for output @@ -309,7 +310,7 @@ ORDER BY `pay_name`", __FILE__, __LINE__); if (count($FORM_ERRORS) > 0) { // Some found... :-( foreach (array('company','position','tax_ident','surname','family','street_nr1','street_nr2','country','zip','city','phone','fix','cell','email','url') as $entry) { - $content[$entry] = secureString(postRequestElement($entry)); + $content[$entry] = secureString(postRequestParameter($entry)); } // END - foreach // Init gender @@ -318,41 +319,33 @@ ORDER BY `pay_name`", __FILE__, __LINE__); } // END - foreach // Check for gender selection - $content['gender_' . strtolower(postRequestElement('gender'))] = ' selected="selected"'; + $content['gender_' . strtolower(postRequestParameter('gender'))] = ' selected="selected"'; // Init receive selection $content['rec_y'] = ''; $content['rec_n'] = ''; // Check for receive_warnings - $content['rec_' . strtolower(postRequestElement('receive_warnings'))] = ' selected="selected"'; + $content['rec_' . strtolower(postRequestParameter('receive_warnings'))] = ' selected="selected"'; $OUT = ''; // Errors found? if (count($FORM_ERRORS) > 0) { - $OUT = "
-
".getMessage('SPONSOR_REGISTER_SOMETHING_MISSING').":

-
-
    \n"; + $OUT = loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_REGISTER_SOMETHING_MISSING'); + $OUT .= '
      '; foreach ($FORM_ERRORS as $error) { - $OUT .= "
    1. ".$error."
    2. \n"; + $OUT .= '
    3. ' . $error . '
    4. '; } // END - foreach - $OUT .= "

    \n"; + $OUT .= '
'; } // END - if $content['form_errors'] = $OUT; - $content['refid'] = bigintval(postRequestElement('refid')); + $content['refid'] = bigintval(postRequestParameter('refid')); } // END - if - // Prepare referal things - if (isGetRequestElementSet('refid')) { - // Referal ID transmitted, we don't care here if it is right or not - $content['refid'] = bigintval(getRequestElement('refid')); - } else { - // No referal link - $content['refid'] = 0; - } + // Prepare referal id + $content['refid'] = determineReferalId(); // Display registration form loadTemplate('guest_sponsor_reg', false, $content);