]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/sponsor_functions.php
Extension ext-earning introduced (unfinished), renamings:
[mailer.git] / inc / libs / sponsor_functions.php
index 48fabe24ea86c89c378dfbf169b91e3415c5b983..c4d10ecb2fef5ede6e41ef79fd8ba8641aba0cae 100644 (file)
@@ -135,7 +135,7 @@ function handleSponsorRequest ($postData, $update=false, $messageArray = array()
 
                                // Remove last ", " from SQL string
                                $sql = substr($sql, 0, -2)." WHERE `id`=%s LIMIT 1";
-                               $DATA['values'][] = bigintval(getRequestParameter('id'));
+                               $DATA['values'][] = bigintval(getRequestElement('id'));
 
                                // Generate message
                                $message = getMessageFromIndexedArray('{--ADMIN_SPONSOR_UPDATED--}', 'updated', $messageArray);
@@ -567,7 +567,7 @@ function doProcessSponsorFormRequest ($messageArray = array()) {
                case 'added': // Sponsor successfully added with account status = UNCONFIRMED!
                        // Check for his id number
                        $result = SQL_QUERY_ESC("SELECT `id`,`hash` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE '%s' REGEXP `email` LIMIT 1",
-                               array(postRequestParameter('email')), __FUNCTION__, __LINE__);
+                               array(postRequestElement('email')), __FUNCTION__, __LINE__);
                        if (SQL_NUMROWS($result) == 1) {
                                // id found so let's load it for the confirmation email
                                list($id, $hash) = SQL_FETCHROW($result);
@@ -575,15 +575,15 @@ function doProcessSponsorFormRequest ($messageArray = array()) {
                                // Prepare data for the email template
                                $content['id']        = $id;
                                $content['hash']      = $hash;
-                               $content['email']     = postRequestParameter('email');
-                               $content['surname']   = postRequestParameter('surname');
-                               $content['family']    = postRequestParameter('family');
+                               $content['email']     = postRequestElement('email');
+                               $content['surname']   = postRequestElement('surname');
+                               $content['family']    = postRequestElement('family');
                                $content['timestamp'] = generateDateTime(time(), 0);
-                               $content['password']  = postRequestParameter('pass1');
+                               $content['password']  = postRequestElement('pass1');
 
                                // Generate email and send it to the new sponsor
                                $message = loadEmailTemplate('sponsor_confirm', $content, $id);
-                               sendEmail(postRequestParameter('email'), '{--SPONSOR_PLEASE_CONFIRM_SUBJECT--}', $message);
+                               sendEmail(postRequestElement('email'), '{--SPONSOR_PLEASE_CONFIRM_SUBJECT--}', $message);
 
                                // Send mail to admin
                                sendAdminNotification('{--ADMIN_NEW_SPONSOR--}', 'admin_sponsor_reg', $content);
@@ -592,7 +592,7 @@ function doProcessSponsorFormRequest ($messageArray = array()) {
                                $message = $messageArray['added'];
                        } else {
                                // Sponsor account not found???
-                               $message = '{%message,SPONSOR_EMAIL_404=' . postRequestParameter('email') . '%}';
+                               $message = '{%message,SPONSOR_EMAIL_404=' . postRequestElement('email') . '%}';
                        }
 
                        // Free memory