]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_cats.php
Fixes for holiday configuration
[mailer.git] / inc / modules / admin / what-config_cats.php
index d51e798a05a686a30f317cdca84d5becae2d3aaf..8ae6c8646fd2c07b7c4321bf24802154fab9462c 100644 (file)
@@ -64,7 +64,7 @@ if (isFormSent('add')) {
                $content = '{--CATEGORY_ADDED--}';
        } else {
                // Category does already exists
-               $content = '<span class="admin_failed">{--CATEGORY_ALREADY_EXISTS--}</span>';
+               $content = '<span class="notice">{--CATEGORY_ALREADY_EXISTS--}</span>';
        }
 
        // Free memory
@@ -93,7 +93,7 @@ if (isFormSent('add')) {
                                        $TEXT = '{--ADMIN_CATEGORIES_SAVED--}';
                                        break;
 
-                               case 'del': // Delete categories
+                               case 'delete': // Delete categories
                                        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
                                                array($id), __FILE__, __LINE__);
                                        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s",
@@ -111,16 +111,16 @@ if (isFormSent('add')) {
                // Display message
                loadTemplate('admin_settings_saved', false, $TEXT);
        } // END - if
-} elseif ((isFormSent('del')) && (ifPostContainsSelections())) {
+} elseif ((isFormSent('delete')) && (ifPostContainsSelections())) {
        // Delete categories
        $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {
                // Load row template and switch colors
-               $OUT .= loadTemplate('admin_del_cats_row', true, $id);
+               $OUT .= loadTemplate('admin_delete_cats_row', true, $id);
        } // END - foreach
 
        // Load main template
-       loadTemplate('admin_del_cats', false, $OUT);
+       loadTemplate('admin_delete_cats', false, $OUT);
 } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
        // Edit categories
        $OUT = '';