diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-07 22:58:46 +0000 | 
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-07 22:58:46 +0000 | 
| commit | 22f8de74875e5351fd7711f3b7b2b430c98f1c05 (patch) | |
| tree | 9eb4ebfdbab719feb9d935c74c761d0ce8b606f9 /engine/lib/sessions.php | |
| parent | ceab24db2a7bf459684a650c287770b4ff090f54 (diff) | |
| download | elgg-22f8de74875e5351fd7711f3b7b2b430c98f1c05.tar.gz elgg-22f8de74875e5351fd7711f3b7b2b430c98f1c05.tar.bz2 | |
Refs #3510, #3418. Merged fix for forwarding after output to trunk.
git-svn-id: http://code.elgg.org/elgg/trunk@9141 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/sessions.php')
| -rw-r--r-- | engine/lib/sessions.php | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/engine/lib/sessions.php b/engine/lib/sessions.php index ae42956a9..407bb69c5 100644 --- a/engine/lib/sessions.php +++ b/engine/lib/sessions.php @@ -472,7 +472,10 @@ function gatekeeper() {  	if (!elgg_is_logged_in()) {  		$_SESSION['last_forward_from'] = current_page_url();  		register_error(elgg_echo('loggedinrequired')); -		forward('', 'login'); + +		if (!forward('', 'login')) { +			throw new SecurityException(elgg_echo('SecurityException:UnexpectedOutputInGatekeeper')); +		}  	}  } @@ -487,7 +490,9 @@ function admin_gatekeeper() {  	if (!elgg_is_admin_logged_in()) {  		$_SESSION['last_forward_from'] = current_page_url();  		register_error(elgg_echo('adminrequired')); -		forward('', 'admin'); +		if (!forward('', 'admin')) { +			throw new SecurityException(elgg_echo('SecurityException:UnexpectedOutputInGatekeeper')); +		}  	}  } | 
