X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_bank_package.php;h=33e0b206c093b74183e57cf377013f40aaea5a79;hb=1c460e4adf0ff3624a7163a9be18640498f47036;hp=86fc276b8b2746b91c4531e361ff35d7c7bb3682;hpb=16b311c338bb4f8436e2ed9e76cb1cd5f3741640;p=mailer.git diff --git a/inc/modules/admin/what-list_bank_package.php b/inc/modules/admin/what-list_bank_package.php index 86fc276b8b..33e0b206c0 100644 --- a/inc/modules/admin/what-list_bank_package.php +++ b/inc/modules/admin/what-list_bank_package.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -45,16 +45,17 @@ addYouAreHereLink('admin', __FILE__); // Check if there is enougth selected $show = true; -if ((isPostRequestParameterSet('id')) && (is_array(postRequestParameter('id'))) && (count(postRequestParameter('id')) > 0)) { +if ((isPostRequestElementSet('id')) && (is_array(postRequestElement('id'))) && (count(postRequestElement('id')) > 0)) { // Okay, which button was pressed? if (isFormSent('change')) { // Change permissions - adminChangeActivationStatus(postRequestParameter('id'), 'bank_packages', 'package_active'); + adminChangeActivationStatus(postRequestElement('id'), 'bank_packages', 'package_active'); } elseif (isFormSent('edit')) { // Delete entries (with confirmation) adminEditEntriesConfirm( - postRequestParameter('id'), - 'bank_packages', + array('id'), + array('bank_packages'), + postRequestElement('id'), array( 'id', 'title', @@ -108,21 +109,23 @@ if ((isPostRequestParameterSet('id')) && (is_array(postRequestParameter('id'))) ) ); $show = false; - } elseif (isPostRequestParameterSet('do_edit')) { + } elseif (isFormSent('do_edit')) { // Delete entries (with confirmation) adminEditEntriesConfirm( - postRequestParameter('id'), - 'bank_packages', + array('id'), + array('bank_packages'), + postRequestElement('id'), array(), array(), array(), - true + array(true) ); - } elseif (isPostRequestParameterSet('delete')) { + } elseif (isFormSent('delete')) { // Delete entries (with confirmation) adminDeleteEntriesConfirm( - postRequestParameter('id'), - 'bank_packages', + array('id'), + array('bank_packages'), + postRequestElement('id'), array( 'id', 'title', @@ -143,15 +146,16 @@ if ((isPostRequestParameterSet('id')) && (is_array(postRequestParameter('id'))) ) ); $show = false; - } elseif (isFormSent('remove')) { + } elseif (isFormSent('do_delete')) { // Delete entries (with confirmation) adminDeleteEntriesConfirm( - postRequestParameter('id'), - 'bank_packages', + array('id'), + array('bank_packages'), + postRequestElement('id'), array(), array(), array(), - true + array(true) ); } } // END - if @@ -161,7 +165,7 @@ if ($show === false) return; // Load all banking packages from DB $result = SQL_QUERY("SELECT - `id`, `title`, `description`, `account_fee`, `package_active`, `interest_plus`, `interest_minus` + `id`,`title`,`description`,`account_fee`,`package_active`,`interest_plus`,`interest_minus` FROM `{?_MYSQL_PREFIX?}_bank_packages` ORDER BY @@ -180,7 +184,7 @@ if (!SQL_HASZERONUMS($result)) { loadTemplate('admin_list_bank_package', false, $OUT); } else { // No packages found - loadTemplate('admin_settings_saved', false, '{--ADMIN_BANK_NO_PACKAGES_FOUND--}'); + displayMessage('{--ADMIN_BANK_NO_PACKAGES_FOUND--}'); } // Free the result