Skip to content

Commit

Permalink
The logic for centering of the Mantis log was reversed.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@3721 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Jul 21, 2005
1 parent c0c2d0b commit 0007225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/html_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: html_api.php,v 1.177 2005-07-19 13:07:25 vboctor Exp $
# $Id: html_api.php,v 1.178 2005-07-21 13:52:17 vboctor Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -271,7 +271,7 @@ function html_top_banner() {
if ( !is_blank( $t_page ) && file_exists( $t_page ) && !is_dir( $t_page ) ) {
include( $t_page );
} else {
if ( ! is_page_name( 'login_page' ) ) {
if ( is_page_name( 'login_page' ) ) {
$t_align = 'center';
} else {
$t_align = 'left';
Expand Down

0 comments on commit 0007225

Please sign in to comment.