diff options
Diffstat (limited to 'actions/user/spotlight.php')
| -rw-r--r-- | actions/user/spotlight.php | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/actions/user/spotlight.php b/actions/user/spotlight.php new file mode 100644 index 000000000..b43af2f16 --- /dev/null +++ b/actions/user/spotlight.php @@ -0,0 +1,15 @@ +<?php
 +
 +		gatekeeper();
 +		
 +		$closed = get_input('closed','true');
 +		if ($closed != 'true') {
 +			$closed = false;
 +		} else {
 +			$closed = true;
 +		}
 +		
 +		$_SESSION['user']->spotlightclosed = $closed;
 +		exit;
 +
 +?>
\ No newline at end of file | 
