Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / guest / what-sponsor_reg.php
index cd23e6eda3bad9217a1119aca2670f6ab85f9d1e..d0d9fff8bbe604188c307bbc9fc9abd278c0670c 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/10/2005 *
- * ===============                              Last change: 05/18/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 06/10/2005 *
+ * ===================                          Last change: 05/18/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-sponsor_reg.php                             *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-sponsor_reg.php                             *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -57,145 +58,145 @@ if (isFormSent()) {
        // Check submitted form data
        //
        // 1. Salutation / Surname / family name
        // Check submitted form data
        //
        // 1. Salutation / Surname / family name
-       if (!isPostRequestElementSet('gender')) {
+       if (!isPostRequestParameterSet('gender')) {
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_GENDER_SELECTED');
        } // END - if
 
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_GENDER_SELECTED');
        } // END - if
 
-       if (!isPostRequestElementSet('surname')) {
+       if (!isPostRequestParameterSet('surname')) {
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_SURNAME_IS_EMPTY');
        } // END - if
 
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_SURNAME_IS_EMPTY');
        } // END - if
 
-       if (!isPostRequestElementSet('family')) {
+       if (!isPostRequestParameterSet('family')) {
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_FAMILY_IS_EMPTY');
        } // END - if
 
        // 2. Company name
        // 012                   3         32    23                  4           43    3                  4          4321    12                  3         32    2                   3           3210
                // Surname is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_FAMILY_IS_EMPTY');
        } // END - if
 
        // 2. Company name
        // 012                   3         32    23                  4           43    3                  4          4321    12                  3         32    2                   3           3210
-       if (((!isPostRequestElementSet('company')) && ((isPostRequestElementSet('tax_ident')) || (isPostRequestElementSet('position')))) || ((isPostRequestElementSet('company')) && (!isPostRequestElementSet('tax_ident')))) {
-               if (!isPostRequestElementSet('company')) {
+       if (((!isPostRequestParameterSet('company')) && ((isPostRequestParameterSet('tax_ident')) || (isPostRequestParameterSet('position')))) || ((isPostRequestParameterSet('company')) && (!isPostRequestParameterSet('tax_ident')))) {
+               if (!isPostRequestParameterSet('company')) {
                        // Company name is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_COMPANY_IS_EMPTY');
                        // Company name is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_COMPANY_IS_EMPTY');
-               } elseif (!isPostRequestElementSet('tax_ident')) {
+               } elseif (!isPostRequestParameterSet('tax_ident')) {
                        // Tax ident number name is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_TAX_IDENT_IS_EMPTY');
                }
 
                        // Tax ident number name is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_TAX_IDENT_IS_EMPTY');
                }
 
-               if (!isPostRequestElementSet('position')) {
+               if (!isPostRequestParameterSet('position')) {
                        // Not fatal but not nice: position in company is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_POSITION_IS_EMPTY');
                } // END - if
        } // END - if
 
        // 3. Street and number
                        // Not fatal but not nice: position in company is empty
                        $FORM_ERRORS[] = getMessage('SPONSOR_POSITION_IS_EMPTY');
                } // END - if
        } // END - if
 
        // 3. Street and number
-       if (!isPostRequestElementSet('street_nr1')) {
+       if (!isPostRequestParameterSet('street_nr1')) {
                // Street name and house number are empty
                $FORM_ERRORS[] = getMessage('SPONSOR_STREET_NR1_IS_EMPTY');
                // Street name and house number are empty
                $FORM_ERRORS[] = getMessage('SPONSOR_STREET_NR1_IS_EMPTY');
-       } elseif ((isPostRequestElementSet('street_nr2')) && (!isPostRequestElementSet('street_nr1'))) {
+       } elseif ((isPostRequestParameterSet('street_nr2')) && (!isPostRequestParameterSet('street_nr1'))) {
                // 1st line for street is empty, but 2nd line not
                $FORM_ERRORS[] = getMessage('SPONSOR_STREET_NR1_IS_EMPTY_2_NOT');
        }
 
        // 4. Country code
                // 1st line for street is empty, but 2nd line not
                $FORM_ERRORS[] = getMessage('SPONSOR_STREET_NR1_IS_EMPTY_2_NOT');
        }
 
        // 4. Country code
-       if (!isPostRequestElementSet('country')) {
+       if (!isPostRequestParameterSet('country')) {
                // Country code is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_COUNTRY_IS_EMPTY');
                // Country code is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_COUNTRY_IS_EMPTY');
-       } elseif (strlen(postRequestElement('country')) != 2) {
+       } elseif (strlen(postRequestParameter('country')) != 2) {
                // Country code is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_COUNTRY_IS_INVALID');
        }
 
        // 3. ZIP code
                // Country code is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_COUNTRY_IS_INVALID');
        }
 
        // 3. ZIP code
-       if (!isPostRequestElementSet('zip')) {
+       if (!isPostRequestParameterSet('zip')) {
                // ZIP code is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_ZIP_IS_EMPTY');
                // ZIP code is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_ZIP_IS_EMPTY');
-       } elseif (bigintval(postRequestElement('zip')) != postRequestElement('zip')) {
+       } elseif (bigintval(postRequestParameter('zip')) != postRequestParameter('zip')) {
                // ZIP is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_ZIP_IS_INVALID');
                // ZIP is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_ZIP_IS_INVALID');
-               setRequestPostElement('zip', '');
+               setPostRequestParameter('zip', '');
        }
 
        // 4. City
        }
 
        // 4. City
-       if (!isPostRequestElementSet('city')) {
+       if (!isPostRequestParameterSet('city')) {
                // City is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_CITY_IS_EMPTY');
        } // END - if
 
        // 5. Phone number
                // City is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_CITY_IS_EMPTY');
        } // END - if
 
        // 5. Phone number
-       if (!isPostRequestElementSet('phone')) {
+       if (!isPostRequestParameterSet('phone')) {
                // City is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_PHONE_IS_EMPTY');
        } // END - if
 
        // 6. Homepage URL
                // City is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_PHONE_IS_EMPTY');
        } // END - if
 
        // 6. Homepage URL
-       if (!isPostRequestElementSet('url')) {
+       if (!isPostRequestParameterSet('url')) {
                // Homepage URL is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_URL_IS_EMPTY');
                // Homepage URL is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_URL_IS_EMPTY');
-       } elseif (!isUrlValid(postRequestElement('url'))) {
+       } elseif (!isUrlValid(postRequestParameter('url'))) {
                // Homepage URL is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_URL_IS_INVALID');
                // Homepage URL is invalid
                $FORM_ERRORS[] = getMessage('SPONSOR_URL_IS_INVALID');
-               setRequestPostElement('url', '');
+               setPostRequestParameter('url', '');
        }
 
        // 7. Light validation of email address
        }
 
        // 7. Light validation of email address
-       if ((!isPostRequestElementSet('email')) || (postRequestElement('email') == '@')) {
+       if ((!isPostRequestParameterSet('email')) || (postRequestParameter('email') == '@')) {
                // Email is invalid/empty
                $FORM_ERRORS[] = getMessage('SPONSOR_EMAIL_IS_INVALID');
                // Email is invalid/empty
                $FORM_ERRORS[] = getMessage('SPONSOR_EMAIL_IS_INVALID');
-       } elseif (isSponsorRegisteredWithEmail(postRequestElement('email'))) {
+       } elseif (isSponsorRegisteredWithEmail(postRequestParameter('email'))) {
                // Email already found in database!
                $FORM_ERRORS[] = getMessage('SPONSOR_EMAIL_IS_ALREADY_REGISTERED');
                // Email already found in database!
                $FORM_ERRORS[] = getMessage('SPONSOR_EMAIL_IS_ALREADY_REGISTERED');
-               setRequestPostElement('email', '');
+               setPostRequestParameter('email', '');
        }
 
        // 8. Pay type selected?
        }
 
        // 8. Pay type selected?
-       if (!isPostRequestElementSet('pay_type')) {
+       if (!isPostRequestParameterSet('pay_type')) {
                // Not pay type selected
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_PAYTYPE_SELECTED');
        } // END - if
 
        // 9. Interval of mails
                // Not pay type selected
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_PAYTYPE_SELECTED');
        } // END - if
 
        // 9. Interval of mails
-       if (!isPostRequestElementSet('warning_interval')) {
+       if (!isPostRequestParameterSet('warning_interval')) {
                // No warning interval selected
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_WARNING_INTERVAL_SELECTED');
        } // END - if
 
        // 10. Mail notifications disabled/enabled
                // No warning interval selected
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_WARNING_INTERVAL_SELECTED');
        } // END - if
 
        // 10. Mail notifications disabled/enabled
-       if (!isPostRequestElementSet('receive_warnings')) {
+       if (!isPostRequestParameterSet('receive_warnings')) {
                // Option not selected!
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_RECEIVE_WARNINGS_SELECTED');
        } // END - if
 
        // Did he enter his password twice?
                // Option not selected!
                $FORM_ERRORS[] = getMessage('SPONSOR_NO_RECEIVE_WARNINGS_SELECTED');
        } // END - if
 
        // Did he enter his password twice?
-       if (((!isPostRequestElementSet('pass1')) || (!isPostRequestElementSet('pass2'))) || ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2')))) {
-               if ((postRequestElement('pass1') != postRequestElement('pass2')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2'))) {
+       if (((!isPostRequestParameterSet('pass1')) || (!isPostRequestParameterSet('pass2'))) || ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2')))) {
+               if ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2'))) {
                        // Passwords missmatch
                        $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORDS_MISMATCH');
                } else {
                        // Passwords missmatch
                        $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORDS_MISMATCH');
                } else {
-                       if (!isPostRequestElementSet('pass1')) {
+                       if (!isPostRequestParameterSet('pass1')) {
                                // Password 1 is empty
                                $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORD1_EMPTY');
                        }
 
                                // Password 1 is empty
                                $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORD1_EMPTY');
                        }
 
-                       if (!isPostRequestElementSet('pass2')) {
+                       if (!isPostRequestParameterSet('pass2')) {
                                // Password 2 is empty
                                $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORD2_EMPTY');
                        }
                }
                                // Password 2 is empty
                                $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORD2_EMPTY');
                        }
                }
-       } elseif (strlen(postRequestElement('pass1')) < getConfig('pass_len')) {
+       } elseif (strlen(postRequestParameter('pass1')) < getConfig('pass_len')) {
                // Password is to short!
                // Password is to short!
-               $FORM_ERRORS[] = sprintf(getMessage('SPONSOR_PASSWORD_TOO_SHORT'), getConfig('pass_len'));
+               $FORM_ERRORS[] = getMessage('SPONSOR_PASSWORD_TOO_SHORT');
        }
 
        // Check if he has accepted the terms&conditions
        }
 
        // Check if he has accepted the terms&conditions
-       if (!isPostRequestElementSet('terms')) {
+       if (!isPostRequestParameterSet('terms')) {
                // Homepage URL is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_TERMS_NOT_ACCEPTED');
        } // END - if
 
        // If there is something wrong/missing stop registration
                // Homepage URL is empty
                $FORM_ERRORS[] = getMessage('SPONSOR_TERMS_NOT_ACCEPTED');
        } // END - if
 
        // If there is something wrong/missing stop registration
-       if (count($FORM_ERRORS) > 0) unsetPostRequestElement('ok');
+       if (count($FORM_ERRORS) > 0) unsetPostRequestParameter('ok');
 }
 
 if ((isFormSent()) && (count($FORM_ERRORS) == 0)) {
 }
 
 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",
        $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
        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);
 
        // 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 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",
                        $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) {
                        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;
                                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['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);
 
                                // 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);
 
                                // 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 = $messageArray['added'];
                        } else {
                                // Sponsor account not found???
-                               $message = sprintf(getMessage('SPONSOR_EMAIL_404'), postRequestElement('email'));
+                               $message = getMaskedMessage('SPONSOR_EMAIL_404', postRequestParameter('email'));
                        }
 
                        // Free memory
                        }
 
                        // 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
                        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
                        } else {
                                // Message for the guest
-                               $message = sprintf(getMessage('SPONSOR_UNKNOWN_STATUS'), $STATUS);
+                               $message = getMaskedMessage('SPONSOR_UNKNOWN_STATUS', $STATUS);
                        }
                        break;
        }
                        }
                        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
        if (SQL_NUMROWS($result) > 0) {
                // Load all types...
                // @TODO Swap this HTML code to templates
-               $OUT = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"300\" class=\"left2 right2 top2\">\n";
+               $OUT = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"300\" class=\"left right top\">\n";
                $SW = 2;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Prepare content for output
                $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) {
                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
                        } // END - foreach
 
                        // Init gender
@@ -318,41 +319,33 @@ ORDER BY `pay_name`", __FILE__, __LINE__);
                        } // END - foreach
 
                        // Check for gender selection
                        } // 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
 
                        // 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 = '';
 
                        // Errors found?
                        if (count($FORM_ERRORS) > 0) {
-                               $OUT = "<div align=\"center\">
-  <strong><div class=\"guest_failed\">".getMessage('SPONSOR_REGISTER_SOMETHING_MISSING').":</div></strong><br />
-</div>
-<ol>\n";
+                               $OUT = loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_REGISTER_SOMETHING_MISSING');
+                               $OUT .= '<ol>';
                                foreach ($FORM_ERRORS as $error) {
                                foreach ($FORM_ERRORS as $error) {
-                                       $OUT .= "<li>".$error."</li>\n";
+                                       $OUT .= '<li>' . $error . '</li>';
                                } // END - foreach
 
                                } // END - foreach
 
-                               $OUT .= "</ol><br />\n";
+                               $OUT .= '</ol>';
                        } // END - if
 
                        $content['form_errors'] = $OUT;
                        } // END - if
 
                        $content['form_errors'] = $OUT;
-                       $content['refid']       = bigintval(postRequestElement('refid'));
+                       $content['refid']       = bigintval(postRequestParameter('refid'));
                } // END - if
 
                } // 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);
 
                // Display registration form
                loadTemplate('guest_sponsor_reg', false, $content);