. /** * Check to see if cookies are working * * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT Core API's */ require_once( 'core.php' ); if ( auth_is_user_authenticated() ) { $f_return = gpc_get_string( 'return' ); $c_return = string_prepare_header( $f_return ); # If this is the first login for an instance, then redirect to create project page. # Use lack of projects as a hint for such scenario. if ( is_blank( $f_return ) || $f_return == 'index.php' ) { if ( current_user_is_administrator() && project_table_empty() ) { $c_return = 'manage_proj_create_page.php'; } } $t_redirect_url = $c_return; } else { $t_redirect_url = 'login_page.php?cookie_error=1'; } print_header_redirect( $t_redirect_url, true, true );