diff options
-rw-r--r-- | include/init.inc.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/init.inc.php b/include/init.inc.php index 823695753..0a8765cf9 100644 --- a/include/init.inc.php +++ b/include/init.inc.php @@ -28,9 +28,6 @@ $isadmin = false; include_once( './language/'.$user['language'].'.php' ); // displaying the username in the language of the connected user, instead of // "guest" as you can find in the database -if ( $user['is_the_guest'] ) -{ - $user['username'] = $lang['guest']; -} +if ( $user['is_the_guest'] ) $user['username'] = $lang['guest']; include_once( './template/'.$user['template'].'/htmlfunctions.inc.php' ); ?>
\ No newline at end of file |