X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_surfbar_actions.php;h=a614c05c6dfb35211421220c7add13d1cd7e5037;hb=5f70ac9d208ca39e3381705afcad2654a700a850;hp=34865328c8b877823d8d5795e056dec5e8e1b121;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/modules/admin/what-list_surfbar_actions.php b/inc/modules/admin/what-list_surfbar_actions.php index 34865328c8..a614c05c6d 100644 --- a/inc/modules/admin/what-list_surfbar_actions.php +++ b/inc/modules/admin/what-list_surfbar_actions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,28 +44,28 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // By default show the list... -$show = true; +$show = TRUE; // Edit or delete button hit? if (isFormSent('edit')) { // Show entries for editing - showEntriesByXmlCallback('admin_edit_show_surfbar_actions'); + doGenericXmlTemplateCallback('admin_edit_show_surfbar_actions'); // Do not show the list of URLs after this template - $show = false; + $show = FALSE; } elseif (isFormSent('do_edit')) { // Change data of entries - showEntriesByXmlCallback('admin_edit_do_surfbar_actions'); + doGenericXmlTemplateCallback('admin_edit_do_surfbar_actions'); } // Show entries? -if ($show === false) { +if ($show === FALSE) { // No, a form has already been show - return false; + return FALSE; } // END - if // List all URLs -showEntriesByXmlCallback('admin_list_surfbar_actions'); +doGenericXmlTemplateCallback('admin_list_surfbar_actions'); // [EOF] ?>