X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_cats.php;h=b2246e48a21b7c1112159c1fe69a4562cfd16ec8;hb=fc162164725588cf75969f707faead9c9cd8e68b;hp=bcb2d4a7788de62c28ad60aad749be71946bc413;hpb=57227d33e870ec5cd271209c4a978a52b45c2dd6;p=mailer.git diff --git a/inc/modules/admin/what-config_cats.php b/inc/modules/admin/what-config_cats.php index bcb2d4a778..b2246e48a2 100644 --- a/inc/modules/admin/what-config_cats.php +++ b/inc/modules/admin/what-config_cats.php @@ -19,6 +19,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,11 +49,11 @@ addMenuDescription('admin', __FILE__); // Init variable to avoid a notice $CATS = ''; -if (isPostRequestParameterSet('add')) { +if (isFormSent('add')) { // Add a new category $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `cat`='%s' LIMIT 1", array(postRequestParameter('catname')), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == '0') { + 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')", array( @@ -60,7 +61,7 @@ if (isPostRequestParameterSet('add')) { postRequestParameter('visible'), bigintval(postRequestParameter('parent') + 1) ), __FILE__, __LINE__); - $content = getMessage('CATEGORY_ADDED'); + $content = '{--CATEGORY_ADDED--}'; } else { // Category does already exists $content = '{--CATEGORY_ALREADY_EXISTS--}'; @@ -89,7 +90,7 @@ if (isPostRequestParameterSet('add')) { postRequestParameter('sort', $id), $id ), __FILE__, __LINE__); - $TEXT = getMessage('CATEGORIES_SAVED'); + $TEXT = '{--CATEGORIES_SAVED--}'; break; case 'del': // Delete categories @@ -97,7 +98,7 @@ if (isPostRequestParameterSet('add')) { array($id), __FILE__, __LINE__); SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s", array($id), __FILE__, __LINE__); - $TEXT = getMessage('CATEGORIES_DELETED'); + $TEXT = '{--CATEGORIES_DELETED--}'; break; } // END - switch } else { @@ -110,7 +111,7 @@ if (isPostRequestParameterSet('add')) { // Display message loadTemplate('admin_settings_saved', false, $TEXT); } // END - if -} elseif ((isPostRequestParameterSet('del')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('del')) && (countPostSelection() > 0)) { // Delete categories $OUT = ''; $SW = 2; foreach (postRequestParameter('sel') as $id => $value) { @@ -136,7 +137,7 @@ if (isPostRequestParameterSet('add')) { // Load main template loadTemplate('admin_del_cats', false, $OUT); -} elseif ((isPostRequestParameterSet('edit')) && (countPostSelection() > 0)) { +} elseif ((isFormSent('edit')) && (countPostSelection() > 0)) { // Edit categories $OUT = ''; $SW = 2; foreach (postRequestParameter('sel') as $id => $value) {