From eefb60612afa872b343195d7d13532901286c921 Mon Sep 17 00:00:00 2001 From: mieszkou Date: Sat, 21 May 2022 01:53:59 +0200 Subject: [PATCH] modified: system/includes/functions.php - missing ; --- system/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index 69223f8..fe1ff2d 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -200,7 +200,7 @@ function rebuilt_cache($type) if (is_array($tmp)) { foreach ($tmp as $file) { if(strpos($file, '/draft/') === false) { - $posts_cache_sorted[] = array_merge(pathinfo($file), ['content' => preg_replace('/\s+/', '', (file_get_contents($file)))]) + $posts_cache_sorted[] = array_merge(pathinfo($file), ['content' => preg_replace('/\s+/', '', (file_get_contents($file)))]); } } }