Added feedback
This commit is contained in:
parent
2e9b2d72be
commit
47d03058d1
2 changed files with 22 additions and 23 deletions
|
@ -1273,9 +1273,9 @@ class Profile
|
||||||
|
|
||||||
$publish = (Config::get('system', 'publish_all') ? '' : " AND `publish` = 1 ");
|
$publish = (Config::get('system', 'publish_all') ? '' : " AND `publish` = 1 ");
|
||||||
|
|
||||||
|
|
||||||
$total = 0;
|
$total = 0;
|
||||||
$cnt = DBA::fetchFirst("SELECT COUNT(*) AS `total` FROM `profile`
|
$cnt = DBA::fetchFirst("SELECT COUNT(*) AS `total`
|
||||||
|
FROM `profile`
|
||||||
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
||||||
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` $sql_extra");
|
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` $sql_extra");
|
||||||
if (DBA::isResult($cnt)) {
|
if (DBA::isResult($cnt)) {
|
||||||
|
@ -1286,7 +1286,8 @@ class Profile
|
||||||
$limit = $start . ',' . $count;
|
$limit = $start . ',' . $count;
|
||||||
|
|
||||||
$profiles = DBA::p("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
|
$profiles = DBA::p("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
|
||||||
`contact`.`addr`, `contact`.`url` AS `profile_url` FROM `profile`
|
`contact`.`addr`, `contact`.`url` AS `profile_url`
|
||||||
|
FROM `profile`
|
||||||
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
||||||
LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
|
LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
|
||||||
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `contact`.`self`
|
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `contact`.`self`
|
||||||
|
|
|
@ -11,6 +11,7 @@ use Friendica\Core\L10n;
|
||||||
use Friendica\Core\Renderer;
|
use Friendica\Core\Renderer;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
use Friendica\Model\Profile;
|
use Friendica\Model\Profile;
|
||||||
|
use Friendica\Network\HTTPException;
|
||||||
use Friendica\Util\Proxy as ProxyUtils;
|
use Friendica\Util\Proxy as ProxyUtils;
|
||||||
use Friendica\Util\Strings;
|
use Friendica\Util\Strings;
|
||||||
|
|
||||||
|
@ -46,8 +47,7 @@ class Directory extends BaseModule
|
||||||
|
|
||||||
if (($config->get('system', 'block_public') && !local_user() && !remote_user()) ||
|
if (($config->get('system', 'block_public') && !local_user() && !remote_user()) ||
|
||||||
($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) {
|
($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) {
|
||||||
notice(L10n::t('Public access denied.') . EOL);
|
throw new HTTPException\ForbiddenException();
|
||||||
return '';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$output = '';
|
$output = '';
|
||||||
|
@ -55,11 +55,9 @@ class Directory extends BaseModule
|
||||||
|
|
||||||
Nav::setSelected('directory');
|
Nav::setSelected('directory');
|
||||||
|
|
||||||
if (!empty($app->data['search'])) {
|
$search = (!empty($_REQUEST['search']) ?
|
||||||
$search = Strings::escapeTags(trim($app->data['search']));
|
Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) :
|
||||||
} else {
|
'');
|
||||||
$search = (!empty($_GET['search']) ? Strings::escapeTags(trim(rawurldecode($_GET['search']))) : '');
|
|
||||||
}
|
|
||||||
|
|
||||||
$gDirPath = '';
|
$gDirPath = '';
|
||||||
$dirURL = $config->get('system', 'directory');
|
$dirURL = $config->get('system', 'directory');
|
||||||
|
|
Loading…
Reference in a new issue