Skip to content

Commit

Permalink
Use config_get_global for top_include_page
Browse files Browse the repository at this point in the history
Issue #23626
  • Loading branch information
atrol committed Nov 13, 2017
1 parent 4db88e9 commit bc0fb1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/html_api.php
Expand Up @@ -382,7 +382,7 @@ function html_print_logo( $p_logo = null ) {
* @return void
*/
function html_top_banner() {
$t_page = config_get( 'top_include_page' );
$t_page = config_get_global( 'top_include_page' );
$t_logo_image = config_get( 'logo_image' );

if( !is_blank( $t_page ) && file_exists( $t_page ) && !is_dir( $t_page ) ) {
Expand Down

0 comments on commit bc0fb1e

Please sign in to comment.