]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
More double quotes to single rewritten, CSS/HTML cleanups
[mailer.git] / inc / modules / admin / what-config_email.php
index 1a2fc7f55fbd8726e571bceea9b5b18d0bf19cb4..9a93ae5e036f695e4689a8842d760e70614d71de 100644 (file)
@@ -45,20 +45,20 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addMenuDescription('admin', __FILE__);
 
 // Remove empty array index
-if (!isPostRequestElementSet(('max'))) unsetPostRequestElement(('add_max'));
+if (!isPostRequestParameterSet(('max'))) unsetPostRequestParameter(('add_max'));
 
-if (isPostRequestElementSet(('add_max'))) {
+if (isPostRequestParameterSet(('add_max'))) {
        // Save all settings
        $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE value='%s' LIMIT 1",
-       array(bigintval(postRequestElement('max'))), __FILE__, __LINE__);
+       array(bigintval(postRequestParameter('max'))), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) == '0') {
                // Add this value (including comment)
                SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (value, comment) VALUES ('%s','%s')",
-               array(bigintval(postRequestElement('max')), postRequestElement('comment')),__FILE__, __LINE__);
+               array(bigintval(postRequestParameter('max')), postRequestParameter('comment')),__FILE__, __LINE__);
                $content = getMessage('MAX_VALUE_SAVED');
        } else {
                // Value does alread exists!
-               $content = "<span class=\"admin_failed\">{--MAX_VALUE_ALREADY--}</span>";
+               $content = '<span class="admin_failed">{--MAX_VALUE_ALREADY--}</span>';
        }
 
        // Free memory
@@ -66,20 +66,20 @@ if (isPostRequestElementSet(('add_max'))) {
 
        // Display message
        loadTemplate('admin_settings_saved', false, $content);
-} elseif ((isFormSent()) && (isGetRequestElementSet('do'))) {
+} elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) {
        // Change or delete entries...
        $TEXT = '';
-       foreach (postRequestElement('id') as $id => $value) {
+       foreach (postRequestParameter('id') as $id => $value) {
                // Secure id
                $id = bigintval($id);
 
-               switch (getRequestElement('do'))
+               switch (getRequestParameter('do'))
                {
                        case 'edit': // Change entries
                                SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_max_receive` SET value='%s', comment='%s' WHERE `id`=%s LIMIT 1",
                                array(
-                                       bigintval(postRequestElement('val', $id)),
-                                       postRequestElement('comm', $id),
+                                       bigintval(postRequestParameter('val', $id)),
+                                       postRequestParameter('comm', $id),
                                        $id
                                ),__FILE__, __LINE__);
                                $TEXT = getMessage('MRECEIVE_SAVED');
@@ -97,10 +97,10 @@ if (isPostRequestElementSet(('add_max'))) {
                // Display message
                loadTemplate('admin_settings_saved', false, $TEXT);
        } // END - if
-} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) {
+} elseif ((isPostRequestParameterSet('del')) && (countPostSelection() > 0)) {
        // Delete entries
        $OUT = ''; $SW = 2;
-       foreach (postRequestElement('sel') as $id => $value) {
+       foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
                $result = SQL_QUERY_ESC("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
                array(bigintval($id)), __FILE__, __LINE__);
@@ -123,10 +123,10 @@ if (isPostRequestElementSet(('add_max'))) {
 
        // Load main template
        loadTemplate('admin_config_email_del', false, $content);
-} elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) {
+} elseif ((isPostRequestParameterSet('edit')) && (countPostSelection() > 0)) {
        // Edit entries
        $OUT = ''; $SW = 2;
-       foreach (postRequestElement('sel') as $id => $value) {
+       foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
                $result = SQL_QUERY_ESC("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
                array(bigintval($id)), __FILE__, __LINE__);