]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
Task-create functions does now return a task id. We use that to help registering...
[mailer.git] / inc / modules / admin / what-config_email.php
index 8d45685920d25a00026d85a9d7878b632a7a0196..1383d4e54a01a597f5a9037f075e220f5c24add9 100644 (file)
@@ -56,7 +56,7 @@ if (isPostRequestParameterSet(('add_max'))) {
                // Add this value (including comment)
                SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (value, comment) VALUES ('%s','%s')",
                array(bigintval(postRequestParameter('max')), postRequestParameter('comment')),__FILE__, __LINE__);
-               $content = getMessage('MAX_VALUE_SAVED');
+               $content = '{--MAX_VALUE_SAVED--}';
        } else {
                // Value does alread exists!
                $content = '<span class="admin_failed">{--MAX_VALUE_ALREADY--}</span>';
@@ -83,13 +83,13 @@ if (isPostRequestParameterSet(('add_max'))) {
                                        postRequestParameter('comm', $id),
                                        $id
                                ),__FILE__, __LINE__);
-                               $TEXT = getMessage('MRECEIVE_SAVED');
+                               $TEXT = '{--MRECEIVE_SAVED--}';
                                break;
 
                        case 'del':
                                SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
                                        array($id), __FILE__, __LINE__);
-                               $TEXT = getMessage('MRECEIVE_DELETED');
+                               $TEXT = '{--MRECEIVE_DELETED--}';
                                break;
                }
        }
@@ -98,7 +98,7 @@ if (isPostRequestParameterSet(('add_max'))) {
                // Display message
                loadTemplate('admin_settings_saved', false, $TEXT);
        } // END - if
-} elseif ((isPostRequestParameterSet('del')) && (countPostSelection() > 0)) {
+} elseif ((isFormSent('del')) && (countPostSelection() > 0)) {
        // Delete entries
        $OUT = ''; $SW = 2;
        foreach (postRequestParameter('sel') as $id => $value) {
@@ -124,7 +124,7 @@ if (isPostRequestParameterSet(('add_max'))) {
 
        // Load main template
        loadTemplate('admin_config_email_del', false, $content);
-} elseif ((isPostRequestParameterSet('edit')) && (countPostSelection() > 0)) {
+} elseif ((isFormSent('edit')) && (countPostSelection() > 0)) {
        // Edit entries
        $OUT = ''; $SW = 2;
        foreach (postRequestParameter('sel') as $id => $value) {