Merge pull request #8024 from annando/fix-search
Fix: Search for terms and posts is now possible again
This commit is contained in:
commit
ae0421f321
1 changed files with 2 additions and 2 deletions
|
@ -215,8 +215,8 @@ class Index extends BaseSearchModule
|
||||||
*/
|
*/
|
||||||
private static function tryRedirectToProfile(BaseURL $baseURL, string $search)
|
private static function tryRedirectToProfile(BaseURL $baseURL, string $search)
|
||||||
{
|
{
|
||||||
$isUrl = parse_url($search, PHP_URL_SCHEME) !== '';
|
$isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
|
||||||
$isAddr = preg_match('/^@?([a-z0-9.-_]+@[a-z0-9.-_:]+)$/i', trim($search), $matches);
|
$isAddr = (bool)preg_match('/^@?([a-z0-9.-_]+@[a-z0-9.-_:]+)$/i', trim($search), $matches);
|
||||||
|
|
||||||
if (!$isUrl && !$isAddr) {
|
if (!$isUrl && !$isAddr) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue