X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_network_types.php;h=671e5599a91222c30bbea532d0fb331173c4316b;hb=5bb4af7ad275a532206a773edb2f36d5ad355e06;hp=38ab8a10537a94a8cc31486d2646fa28804276a1;hpb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;p=mailer.git diff --git a/inc/modules/admin/what-config_network_types.php b/inc/modules/admin/what-config_network_types.php index 38ab8a1053..671e5599a9 100644 --- a/inc/modules/admin/what-config_network_types.php +++ b/inc/modules/admin/what-config_network_types.php @@ -44,13 +44,13 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // By default we should display list/add new forms -$GLOBALS['network_display'] = true; +$GLOBALS['network_display'] = TRUE; // Handle form here doNetworkHandleForm(); // Display forms? -if ($GLOBALS['network_display'] === false) { +if ($GLOBALS['network_display'] === FALSE) { // Abort here return; } // END - if @@ -140,7 +140,7 @@ LIMIT 1', $content['network_max_reload_time'] = createTimeSelections($content['network_max_reload_time'], 'network_max_reload_time', 'WDhms'); // Load template - loadTemplate($templateName, false, $content); + loadTemplate($templateName, FALSE, $content); // Abort here return; @@ -201,17 +201,17 @@ LIMIT 1', $content = merge_array($content, SQL_FETCHARRAY($result_config)); // Add it with extra template - $content['network_type_config_content'] = loadTemplate('admin_show_config_network_type', true, $content); + $content['network_type_config_content'] = loadTemplate('admin_show_config_network_type', TRUE, $content); } else { // No configuration found, so display form - $content['network_type_config_content'] = loadTemplate('admin_add_config_network_type', true, $content); + $content['network_type_config_content'] = loadTemplate('admin_add_config_network_type', TRUE, $content); } // Free result SQL_FREERESULT($result_config); // Load row template - $OUT .= loadTemplate('admin_config_network_types_row', true, $content); + $OUT .= loadTemplate('admin_config_network_types_row', TRUE, $content); } // END - while // Prepare array for main template @@ -221,7 +221,7 @@ LIMIT 1', ); // Load main template - loadTemplate('admin_config_network_types', false, $content); + loadTemplate('admin_config_network_types', FALSE, $content); } else { // No entries found displayMessage('{%message,ADMIN_CONFIG_NETWORK_HANDLER_TYPES_404=' . bigintval(getRequestElement('network_id')) . '%}');