X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_cats.php;h=b9683ab51f3124b7fac1180cbf6251f356d2ce54;hb=0ddf8f6c578aa2c1ff1db9fb8eb0b93a1e247b73;hp=feffa1cfb374d03037e8ce0f7677cbf2c6ae69ac;hpb=2e04164985cae54359663633a8796567d71082a7;p=mailer.git diff --git a/inc/modules/admin/what-config_cats.php b/inc/modules/admin/what-config_cats.php index feffa1cfb3..b9683ab51f 100644 --- a/inc/modules/admin/what-config_cats.php +++ b/inc/modules/admin/what-config_cats.php @@ -15,8 +15,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -64,7 +62,7 @@ if (isFormSent('add')) { $content = '{--CATEGORY_ADDED--}'; } else { // Category does already exists - $content = '{--CATEGORY_ALREADY_EXISTS--}'; + $content = '{--CATEGORY_ALREADY_EXISTS--}'; } // Free memory @@ -93,7 +91,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 +109,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 = ''; @@ -134,7 +132,7 @@ if (isFormSent('add')) { SQL_FREERESULT($result); // Prepare data for the row template - $content['visible_selection'] = addSelectionBox('yn', $content['visible'], 'visible', $content['id']) + $content['visible_selection'] = addSelectionBox('yn', $content['visible'], 'visible', $content['id']); // Load row template and switch colors $OUT .= loadTemplate('admin_edit_cats_row', true, $content);