productionMode) { error_reporting(E_ALL & ~E_NOTICE); } /* * assign value to the variable $_loginCheckType, before including this file, to change Login Check Type * default Login Check Type is 0 and function loginRedirect() will be called * other values are negative (-1) for not checking at all, or positive (1) for calling loginVerify() */ if (empty($_loginCheckType)) { loginRedirect(); } else { if ($_loginCheckType > 0) { loginVerify(); } } errorSetMsg(); loginGetUser(); ?>