Skip to content

Commit

Permalink
Missing space before version suffix in footer
Browse files Browse the repository at this point in the history
Regression introduced by 004e692
  • Loading branch information
dregad committed Jan 20, 2015
1 parent b6103c4 commit 065521c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/html_api.php
Expand Up @@ -688,7 +688,7 @@ function html_footer() {
$t_version_suffix = '';
$t_copyright_years = ' 2000 - ' . date( 'Y' );
if( config_get( 'show_version' ) == ON ) {
$t_version_suffix = ' ' . htmlentities( MANTIS_VERSION . config_get_global( 'version_suffix' ) );
$t_version_suffix = ' ' . htmlentities( MANTIS_VERSION . ' ' . config_get_global( 'version_suffix' ) );
}

echo '<address id="mantisbt-copyright">' . "\n";
Expand Down

0 comments on commit 065521c

Please sign in to comment.