Remove test loggings
This commit is contained in:
@@ -218,7 +218,6 @@ class Index extends BaseSearchModule
|
|||||||
$isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
|
$isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
|
||||||
$isAddr = (bool)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);
|
||||||
|
|
||||||
Logger::info('Search', ['url' => $isUrl, 'addr' => $isAddr]);
|
|
||||||
if (!$isUrl && !$isAddr) {
|
if (!$isUrl && !$isAddr) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -226,7 +225,7 @@ class Index extends BaseSearchModule
|
|||||||
if ($isAddr) {
|
if ($isAddr) {
|
||||||
$search = $matches[1];
|
$search = $matches[1];
|
||||||
}
|
}
|
||||||
Logger::info('Search', ['term' => $search]);
|
|
||||||
if (local_user()) {
|
if (local_user()) {
|
||||||
// User-specific contact URL/address search
|
// User-specific contact URL/address search
|
||||||
$contact_id = Contact::getIdForURL($search, local_user());
|
$contact_id = Contact::getIdForURL($search, local_user());
|
||||||
@@ -247,7 +246,6 @@ class Index extends BaseSearchModule
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger::info('Search', ['cid' => $contact_id]);
|
|
||||||
if (!empty($contact_id)) {
|
if (!empty($contact_id)) {
|
||||||
$baseURL->redirect('contact/' . $contact_id);
|
$baseURL->redirect('contact/' . $contact_id);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user