Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-config_email.php
index 3986db1a1cfc35acb26136caea601f73d566aa54..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;
                }
        }