Prevent some E_NOTICE in identity.php

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-03-01 14:36:23 +01:00
parent f10d2afca0
commit 04eacb6470
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 4 additions and 3 deletions

View File

@ -237,6 +237,7 @@ function profile_sidebar($profile, $block = 0) {
if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect'])) if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect']))
$connect = false; $connect = false;
$remoteconnect = NULL;
if (isset($profile['remoteconnect'])) if (isset($profile['remoteconnect']))
$remoteconnect = $profile['remoteconnect']; $remoteconnect = $profile['remoteconnect'];
@ -292,9 +293,9 @@ function profile_sidebar($profile, $block = 0) {
// check if profile is a forum // check if profile is a forum
if((intval($profile['page-flags']) == PAGE_COMMUNITY) if((intval($profile['page-flags']) == PAGE_COMMUNITY)
|| (intval($profile['page-flags']) == PAGE_PRVGROUP) || (intval($profile['page-flags']) == PAGE_PRVGROUP)
|| (intval($profile['forum'])) || (isset($profile['forum']) && intval($profile['forum']))
|| (intval($profile['prv'])) || (isset($profile['prv']) && intval($profile['prv']))
|| (intval($profile['community']))) || (isset($profile['community']) && intval($profile['community'])))
$account_type = t('Forum'); $account_type = t('Forum');
else else
$account_type = ""; $account_type = "";