diff options
author | friendica <info@friendica.com> | 2013-01-21 19:56:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-21 19:56:39 -0800 |
commit | fb76675a28b37b7281546373671d0dabbd69ef46 (patch) | |
tree | 974b2d68c4aed5a64d383654808cbf3163768771 /boot.php | |
parent | 4119e1f9cc9ebb6a45ec69fd23c1262b3f823c3a (diff) | |
download | volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.tar.gz volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.tar.bz2 volse-hubzilla-fb76675a28b37b7281546373671d0dabbd69ef46.zip |
now we're into the minor nitty fixes
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1186,7 +1186,7 @@ if(! function_exists('local_user')) { if(! function_exists('remote_user')) { function remote_user() { if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id'))) - return intval($_SESSION['visitor_id']); + return $_SESSION['visitor_id']; return false; } } |