aboutsummaryrefslogtreecommitdiff
path: root/actions/user/spotlight.php
blob: 390197e78570673993dc47e9b928912002aeedf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Close or open spotlight.
 *
 * @package Elgg.Core
 * @subpackage Spotlight
 * @todo This is deprecated in 1.8
 */

$closed = get_input('closed', 'true');
if ($closed != 'true') {
	$closed = false;
} else {
	$closed = true;
}

get_loggedin_user()->spotlightclosed = $closed;
// exit as this action is called through Ajax
exit;