From 9708249b2a8ba63668ce6972da21d942fa4aae35 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Sat, 21 Oct 2023 10:59:43 +0700 Subject: [PATCH] Updated --- library/includes/core/caches.php | 2 +- library/includes/cron/jobs/cache_gc.php | 2 +- library/includes/datastore/sqlite.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/library/includes/core/caches.php b/library/includes/core/caches.php index 19f141ed..ef027fd8 100644 --- a/library/includes/core/caches.php +++ b/library/includes/core/caches.php @@ -116,4 +116,4 @@ class CACHES { return "CREATE TABLE {$cfg['table_name']} ( {$cfg['columns']} )"; } -} \ No newline at end of file +} diff --git a/library/includes/cron/jobs/cache_gc.php b/library/includes/cron/jobs/cache_gc.php index 77366741..7147889a 100644 --- a/library/includes/cron/jobs/cache_gc.php +++ b/library/includes/cron/jobs/cache_gc.php @@ -11,4 +11,4 @@ foreach ($bb_cfg['cache']['engines'] as $cache_name => $cache_val) $changes = CACHE($cache_name)->gc(); $cron_runtime_log = date('Y-m-d H:i:s') ." -- ". str_pad("$cache_name ", 25, '-', STR_PAD_RIGHT) ." del: $changes\n"; } -} \ No newline at end of file +} diff --git a/library/includes/datastore/sqlite.php b/library/includes/datastore/sqlite.php index c23374d3..d9553364 100644 --- a/library/includes/datastore/sqlite.php +++ b/library/includes/datastore/sqlite.php @@ -73,4 +73,4 @@ class datastore_sqlite extends datastore_common { return class_exists('SQLite3'); } -} \ No newline at end of file +}