Skip to content

Commit

Permalink
Use config_get_global for css_include_file
Browse files Browse the repository at this point in the history
Issue #23626
  • Loading branch information
atrol committed Nov 13, 2017
1 parent edbdeb8 commit ccaf434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/html_api.php
Expand Up @@ -208,7 +208,7 @@ function require_css( $p_stylesheet_path ) {
*/
function html_css() {
global $g_stylesheets_included;
html_css_link( config_get( 'css_include_file' ) );
html_css_link( config_get_global( 'css_include_file' ) );
# Add right-to-left css if needed
if( lang_get( 'directionality' ) == 'rtl' ) {
html_css_link( config_get( 'css_rtl_include_file' ) );
Expand Down

0 comments on commit ccaf434

Please sign in to comment.