X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fdirectory.php;h=cb0b1f4cd115d18af37ba4bbd55faf796d02132c;hb=7034d6efbd988e7481ac6f5d6413a8925221ed6b;hp=50a0a93b9ce454e50ec8b604ce5e205e172527ff;hpb=52f14ffa5f266e0e811b0e3e429734f0ec73a859;p=friendica.git diff --git a/mod/directory.php b/mod/directory.php index 50a0a93b9c..cb0b1f4cd1 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,6 +1,8 @@ set_pager_itemspage(60); if(local_user()) { @@ -9,30 +11,24 @@ function directory_init(&$a) { $a->page['aside'] .= findpeople_widget(); $a->page['aside'] .= follow_widget(); - } else { unset($_SESSION['theme']); unset($_SESSION['mobile-theme']); } - - } - -function directory_post(&$a) { +function directory_post(App $a) { if(x($_POST,'search')) $a->data['search'] = $_POST['search']; } - - -function directory_content(&$a) { +function directory_content(App $a) { global $db; require_once("mod/proxy.php"); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || + if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; @@ -124,7 +120,7 @@ function directory_content(&$a) { } // if(strlen($rr['dob'])) { // if(($years = age($rr['dob'],$rr['timezone'],'')) != 0) -// $details .= '
' . t('Age: ') . $years ; +// $details .= '
' . t('Age: ') . $years ; // } // if(strlen($rr['gender'])) // $details .= '
' . t('Gender: ') . $rr['gender'];