forked from friendica/friendica-addons
fix(blockbot): indent code using psr12
This commit is contained in:
parent
c3919e52d2
commit
e7f7868c88
|
@ -79,9 +79,8 @@ function blockbot_init_1(App $a) {
|
||||||
|
|
||||||
if (!Config::get('blockbot', 'good_crawlers')) {
|
if (!Config::get('blockbot', 'good_crawlers')) {
|
||||||
$agents = array_merge($agents, $good_agents);
|
$agents = array_merge($agents, $good_agents);
|
||||||
}
|
} else {
|
||||||
else{
|
foreach ($good_agents as $good_agent) {
|
||||||
foreach($good_agents as $good_agent){
|
|
||||||
if (stristr($_SERVER['HTTP_USER_AGENT'], $good_agent)) {
|
if (stristr($_SERVER['HTTP_USER_AGENT'], $good_agent)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue