diff options
author | friendica <info@friendica.com> | 2012-10-29 17:14:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-29 17:14:02 -0700 |
commit | e3c2e589794b13e23c1184deeba37e41dbc0144b (patch) | |
tree | c7f36aa88f89ffd7afbc97183d0cf3c20c637da8 /include/security.php | |
parent | a217c8de98329e97c3706ad4351deecd1c31fbc2 (diff) | |
download | volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.tar.gz volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.tar.bz2 volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.zip |
"profile url" e.g. the wall/stream is now "channel url". "Profile URL" goes to the profile details.
Diffstat (limited to 'include/security.php')
-rw-r--r-- | include/security.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/security.php b/include/security.php index dbeeb9177..ea3df2511 100644 --- a/include/security.php +++ b/include/security.php @@ -40,7 +40,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive $_SESSION['theme'] = $user_record['theme']; $_SESSION['authenticated'] = 1; $_SESSION['page_flags'] = $user_record['page-flags']; - $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $user_record['nickname']; + $_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $user_record['nickname']; $_SESSION['my_address'] = $user_record['nickname'] . '@' . substr($a->get_baseurl(),strpos($a->get_baseurl(),'://')+3); $a->user = $user_record; |