aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-27 19:27:14 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-27 19:27:14 -0700
commit2e5fb9c37e76c20ea0c25e1215a549b561dc68a8 (patch)
treed87b4909049a6ae4585284cd8e1dd9c399a26f21 /boot.php
parente15265be3c687d5830a44de38fc2e5311dc00d86 (diff)
downloadvolse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.tar.gz
volse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.tar.bz2
volse-hubzilla-2e5fb9c37e76c20ea0c25e1215a549b561dc68a8.zip
lots of formatting, bug fixes on profile updates, i18n
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index fc793132b..3ec827eee 100644
--- a/boot.php
+++ b/boot.php
@@ -359,8 +359,8 @@ function local_user() {
if(! function_exists('remote_user')) {
function remote_user() {
- if((x($_SESSION,'authenticated')) && (x($_SESSION,'cid')))
- return $_SESSION['cid'];
+ if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
+ return $_SESSION['visitor_id'];
return false;
}}