From aa9b4f8ad7908325633542840805c4c854adb1f1 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Wed, 19 Aug 2015 00:44:04 -0700 Subject: [PATCH] Mark cdn_enabled as global setting Issue #19932 --- config_defaults_inc.php | 1 + core/html_api.php | 4 ++-- core/http_api.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config_defaults_inc.php b/config_defaults_inc.php index 8fd804ed12..7438000220 100644 --- a/config_defaults_inc.php +++ b/config_defaults_inc.php @@ -4258,6 +4258,7 @@ 'class_path','library_path', 'language_path', 'absolute_path_default_upload_folder', 'ldap_simulation_file_path', 'plugin_path', 'bottom_include_page', 'top_include_page', 'default_home_page', 'logout_redirect_page', 'manual_url', 'logo_url', 'wiki_engine_url', + 'cdn_enabled' ); # Temporary variables should not remain defined in global scope diff --git a/core/html_api.php b/core/html_api.php index 55aa076ea1..2ec13e9f13 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -366,7 +366,7 @@ function html_css() { global $g_stylesheets_included; html_css_link( config_get( 'css_include_file' ) ); - if ( config_get( 'cdn_enabled' ) == ON ) { + if ( config_get_global( 'cdn_enabled' ) == ON ) { echo '' . "\n"; } else { html_css_link( 'jquery-ui-' . JQUERY_UI_VERSION . '.min.css' ); @@ -446,7 +446,7 @@ function html_head_javascript() { echo "\t" . '' . "\n"; echo "\t" . '' . "\n"; - if ( config_get( 'cdn_enabled' ) == ON ) { + if ( config_get_global( 'cdn_enabled' ) == ON ) { echo "\t" . '' . "\n"; echo "\t" . '' . "\n"; } else { diff --git a/core/http_api.php b/core/http_api.php index ffa3b8a2bb..9d7822c7ae 100644 --- a/core/http_api.php +++ b/core/http_api.php @@ -166,7 +166,7 @@ function http_security_headers() { $t_script_src = "script-src 'self'"; # White list the CDN urls (if enabled) - if ( config_get( 'cdn_enabled' ) == ON ) { + if ( config_get_global( 'cdn_enabled' ) == ON ) { $t_cdn_url = 'https://ajax.googleapis.com'; $t_style_src .= " $t_cdn_url"; $t_script_src .= " $t_cdn_url";