Skip to content

Commit

Permalink
Use config_get_global for css_rtl_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 ccaf434 commit f213c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/html_api.php
Expand Up @@ -211,7 +211,7 @@ function html_css() {
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' ) );
html_css_link( config_get_global( 'css_rtl_include_file' ) );
}
foreach( $g_stylesheets_included as $t_stylesheet_path ) {
# status_config.php is a special css file, dynamically generated.
Expand Down

0 comments on commit f213c2a

Please sign in to comment.