From 202f571cbe444268823f947db8f3767c468ecef5 Mon Sep 17 00:00:00 2001 From: splitbrain <86426+splitbrain@users.noreply.github.com> Date: Wed, 3 Apr 2024 12:26:54 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Automatic=20code=20style=20fixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Crawler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crawler.php b/Crawler.php index 6cbb5a8..97254b1 100644 --- a/Crawler.php +++ b/Crawler.php @@ -58,7 +58,7 @@ public function crawl($root, $local, $pattern, $recursive, $titlefile) $path = $root . $local; // do not descent into wiki or data directories - if(Path::isWikiControlled($path)) return []; + if (Path::isWikiControlled($path)) return []; if (($dir = opendir($path)) === false) return []; $result = [];