From: Hypolite Petovan Date: Sat, 22 Sep 2018 16:45:49 +0000 (-0400) Subject: Missing $a to $this conversion in App X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=adbc1d3224e8a6875b228e9b506885f10aa74252;p=friendica.git Missing $a to $this conversion in App --- diff --git a/src/App.php b/src/App.php index c00f898f34..3761004575 100644 --- a/src/App.php +++ b/src/App.php @@ -857,7 +857,7 @@ class App if (!empty($_SESSION['visitor_home'])) { $homebase = $_SESSION['visitor_home']; } elseif (local_user()) { - $homebase = 'profile/' . $a->user['nickname']; + $homebase = 'profile/' . $this->user['nickname']; } if (isset($homebase)) {