From 483c3b773791dfffa052c2cf80904861b432242f Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Wed, 6 Oct 2010 16:00:57 +0200 Subject: [PATCH] Don't redirect to the marketing page when trying to view the profile of a not-registered user. Signed-off-by: Florent Bruneau --- modules/profile.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/profile.php b/modules/profile.php index f055c30..b737ac6 100644 --- a/modules/profile.php +++ b/modules/profile.php @@ -262,9 +262,6 @@ class ProfileModule extends PLModule // marketing if the owner has not subscribed and the requirer has logged in. $profile = Profile::get($pid, Profile::FETCH_ALL, $view); $owner = $profile->owner(); - if (S::logged() && !is_null($owner) && $owner->state == 'pending') { - pl_redirect('marketing/public/' . $profile->hrid()); - } // Profile view are logged. if (S::logged()) { -- 2.1.4