]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_point_accounts.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-list_point_accounts.php
index a605653754b0cb0b4ab022ec051bcaf9bb937e59..4f364d436ba5e9269d456e2527e5daca992ab84f 100644 (file)
@@ -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');