Skip to content

Commit

Permalink
* Fix #4005: Signup for new account - invalid username generates crash
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2664 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
int2str committed Jul 8, 2004
1 parent 661108e commit 589ac31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 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.106 2004-07-05 13:52:50 vboctor Exp $
# $Id: html_api.php,v 1.107 2004-07-08 04:37:06 int2str Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -77,7 +77,10 @@ function html_page_top2() {
return;
}

html_login_info();
if ( auth_is_user_authenticated() ) {
html_login_info();
}

if( ON == config_get( 'show_project_menu_bar' ) ) {
print_project_menu_bar();
PRINT '<br />';
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -4,6 +4,7 @@ Mantis ChangeLog

* Enh #3974: Make Mantis issues searchable by Search Engine
* Enh #4016: Automatic language selection based on browser preferences
* Fix #4005: Signup for new account - invalid username generates crash
* New Config: fallback_language (default 'english') - Fallback language for automatic language selection..

2004.07.07 - 0.19.0a1
Expand Down

0 comments on commit 589ac31

Please sign in to comment.