]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_cats.php
Fixes for old-lost code
[mailer.git] / inc / modules / admin / what-config_cats.php
index 4001380d4bf38856e60b2921b3e2b4998b585c1f..afcb7f53f1eecaf9a255333b18b26370b0d4905f 100644 (file)
@@ -53,7 +53,7 @@ if (isFormSent('add')) {
                array(postRequestParameter('catname')), __FILE__, __LINE__);
        if (SQL_HASZERONUMS($result)) {
                // Category does not exists, we simply add it...
-               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_cats` (`cat`, `visible`, `sort`) VALUES ('%s','%s','%s')",
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_cats` (`cat`,`visible`,`sort`) VALUES ('%s','%s','%s')",
                        array(
                                postRequestParameter('catname'),
                                postRequestParameter('visible'),
@@ -101,7 +101,7 @@ if (isFormSent('add')) {
                        } // END - switch
                } else {
                        // Entry not saved
-                       $TEXT .= getMaskedMessage('ADMIN_CATEGORY_NOT_SAVED', $id);
+                       $TEXT .= '{%message,ADMIN_CATEGORY_NOT_SAVED=' . $id . '%}';
                }
        } // END - foreach
 
@@ -124,7 +124,7 @@ if (isFormSent('add')) {
        $OUT = '';
        foreach (postRequestParameter('sel') as $id => $value) {
                // Load data from the category
-               $result = SQL_QUERY_ESC("SELECT `id`, `visible`, `sort` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
+               $result = SQL_QUERY_ESC("SELECT `id`,`visible`,`sort` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
                $content = SQL_FETCHARRAY($result);
 
@@ -145,7 +145,7 @@ if (isFormSent('add')) {
        $CATS = '';
 
        // Load all categories
-       $result = SQL_QUERY("SELECT `id`, `cat`, `visible`, `sort` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
+       $result = SQL_QUERY("SELECT `id`,`cat`,`visible`,`sort` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
        if (!SQL_HASZERONUMS($result)) {
                // Init variables
                $OUT = '';