X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_point_accounts.php;h=4f364d436ba5e9269d456e2527e5daca992ab84f;hb=f1cd2b7ae65e988f5be106f415136aaf92d60538;hp=a605653754b0cb0b4ab022ec051bcaf9bb937e59;hpb=3c50057c4da8c632d1923d7879a2b870d1eb7155;p=mailer.git diff --git a/inc/modules/admin/what-list_point_accounts.php b/inc/modules/admin/what-list_point_accounts.php index a605653754..4f364d436b 100644 --- a/inc/modules/admin/what-list_point_accounts.php +++ b/inc/modules/admin/what-list_point_accounts.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -67,22 +67,22 @@ if (isFormSent('add')) { } } elseif (isFormSent('edit')) { // Show only custom entries for editing - showEntriesByXmlCallback('admin_edit_show_point_accounts'); + doGenericXmlTemplateCallback('admin_edit_show_point_accounts'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('do_edit')) { // Change data of only custom entries - showEntriesByXmlCallback('admin_edit_do_point_accounts'); + doGenericXmlTemplateCallback('admin_edit_do_point_accounts'); } elseif ((isFormSent('delete')) && (ifPointsAccountTypeMatchesPost('CUSTOM'))) { // Show only custom entries for deleting - showEntriesByXmlCallback('admin_delete_show_point_accounts'); + doGenericXmlTemplateCallback('admin_delete_show_point_accounts'); // Do not show the list of URLs after this template $show = FALSE; } elseif ((isFormSent('do_delete')) && (ifPointsAccountTypeMatchesPost('CUSTOM'))) { // Remove only custom entries - showEntriesByXmlCallback('admin_delete_do_point_accounts'); + doGenericXmlTemplateCallback('admin_delete_do_point_accounts'); } // Show entries? @@ -92,7 +92,7 @@ if ($show === FALSE) { } // END - if // List all campaigns -showEntriesByXmlCallback('admin_list_point_accounts'); +doGenericXmlTemplateCallback('admin_list_point_accounts'); // Display form for adding a forced-ad loadTemplate('admin_add_point_accounts');