diff options
author | friendica <info@friendica.com> | 2013-08-15 05:20:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-15 05:20:23 -0700 |
commit | ef414ba94c134ffb6a0ac6d81eafec76519e2bda (patch) | |
tree | 8d4326bfd8bb6222f1bba42587534cbc5d1c5138 | |
parent | 92747366afd6068f563063b00bbf5f2373b6a834 (diff) | |
download | volse-hubzilla-ef414ba94c134ffb6a0ac6d81eafec76519e2bda.tar.gz volse-hubzilla-ef414ba94c134ffb6a0ac6d81eafec76519e2bda.tar.bz2 volse-hubzilla-ef414ba94c134ffb6a0ac6d81eafec76519e2bda.zip |
fix homebase variable
-rwxr-xr-x | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -328,7 +328,7 @@ if($a->module_loaded) { if(x($_SESSION,'visitor_home')) $homebase = $_SESSION['visitor_home']; elseif(local_user()) - $homebase = $a->get_baseurl() . '/channel/' . $a->user['nickname']; + $homebase = $a->get_baseurl() . '/channel/' . $a->channel['channel_address']; if(isset($homebase)) $a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>'; |