diff --git a/user_password.php b/user_password.php index 20ad791c..989e073b 100644 --- a/user_password.php +++ b/user_password.php @@ -31,18 +31,18 @@ if(isset($_SESSION['users_type'])) { $type = $_SESSION['users_type']; } else { - header("location: index.php?notice=auth_requird"); + header("location: {$config['SFIABDIRECTORY']}/index.php?notice=auth_required"); exit; } /* Make sure the user is logged in, but don't check passwd expiry */ if(!isset($_SESSION['users_type'])) { - header("location: user_login.php?type=$type¬ice=auth_required"); + header("location: {$config['SFIABDIRECTORY']}/user_login.php?type=$type¬ice=auth_required"); exit; } if($_SESSION['users_type'] != $type) { - header("location: user_login.php?type=$type¬ice=auth_required"); + header("location: {$config['SFIABDIRECTORY']}/user_login.php?type=$type¬ice=auth_required"); exit; }