From d78f66cd09a68028c385fe31028d8bd69dc1b423 Mon Sep 17 00:00:00 2001
From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Sun, 16 Feb 2020 12:01:53 -0500
Subject: [PATCH] Replace local_user() by Session::isAuthenticated() where
 appropriate

---
 src/Module/Conversation/Community.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php
index ccd9554b8a..a5f663139d 100644
--- a/src/Module/Conversation/Community.php
+++ b/src/Module/Conversation/Community.php
@@ -51,7 +51,7 @@ class Community extends BaseModule
 
 		$tabs = [];
 
-		if ((local_user() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(DI::config()->get('system', 'singleuser'))) {
+		if ((Session::isAuthenticated() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(DI::config()->get('system', 'singleuser'))) {
 			$tabs[] = [
 				'label' => DI::l10n()->t('Local Community'),
 				'url' => 'community/local',
@@ -62,7 +62,7 @@ class Community extends BaseModule
 			];
 		}
 
-		if (local_user() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) {
+		if (Session::isAuthenticated() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) {
 			$tabs[] = [
 				'label' => DI::l10n()->t('Global Community'),
 				'url' => 'community/global',
@@ -86,7 +86,7 @@ class Community extends BaseModule
 		}
 
 		// We need the editor here to be able to reshare an item.
-		if (local_user()) {
+		if (Session::isAuthenticated()) {
 			$x = [
 				'is_owner' => true,
 				'allow_location' => DI::app()->user['allow_location'],
@@ -179,7 +179,7 @@ class Community extends BaseModule
 		}
 
 		// Check if we are allowed to display the content to visitors
-		if (!local_user()) {
+		if (!Session::isAuthenticated()) {
 			$available = self::$page_style == CP_USERS_AND_GLOBAL;
 
 			if (!$available) {
-- 
2.39.5