From e110c2143197ab8883840a20dddd67a32f898ece Mon Sep 17 00:00:00 2001 From: brong Date: Sat, 12 Jan 2002 07:49:11 +0000 Subject: [PATCH] More exciting clean-up git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2124 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/auth.php | 43 ++++++++++++++----------------------------- 1 file changed, 14 insertions(+), 29 deletions(-) diff --git a/functions/auth.php b/functions/auth.php index ba8a6de1..8d71465d 100644 --- a/functions/auth.php +++ b/functions/auth.php @@ -11,40 +11,25 @@ * $Id$ */ -/*****************************************************************/ -/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!! ***/ -/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION. ***/ -/*** + Base level indent should begin at left margin, as ***/ -/*** the require_once below. ***/ -/*** + All identation should consist of four space blocks ***/ -/*** + Tab characters are evil. ***/ -/*** + all comments should use "slash-star ... star-slash" ***/ -/*** style -- no pound characters, no slash-slash style ***/ -/*** + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD ***/ -/*** ALWAYS USE { AND } CHARACTERS!!! ***/ -/*** + Please use ' instead of ", when possible. Note " ***/ -/*** should always be used in _( ) function calls. ***/ -/*** Thank you for your help making the SM code more readable. ***/ -/*****************************************************************/ - require_once( '../functions/page_header.php' ); - function is_logged_in () { - global $squirrelmail_language; +function is_logged_in () { + global $squirrelmail_language; - if ( session_is_registered('user_is_logged_in') ) - return; + if ( session_is_registered('user_is_logged_in') ) { + return; + } - set_up_language($squirrelmail_language, true); + set_up_language($squirrelmail_language, true); - displayHtmlHeader( 'SquirrelMail', '', FALSE ); + displayHtmlHeader( 'SquirrelMail', '', FALSE ); - echo "\n" . - '

'. - _("You must be logged in to access this page.").'

'. - ""._("Go to the login page")."\n". - "
\n"; - exit; - } + echo "\n" . + '

' . + _("You must be logged in to access this page.").'

' . + ""._("Go to the login page")."\n" . + "
\n"; + exit; +} ?> -- 2.25.1