This commit is contained in:
Roman Kelesidis 2023-10-21 10:59:43 +07:00
parent f61d4662f0
commit 9708249b2a
3 changed files with 3 additions and 3 deletions

View File

@ -116,4 +116,4 @@ class CACHES
{ {
return "CREATE TABLE {$cfg['table_name']} ( {$cfg['columns']} )"; return "CREATE TABLE {$cfg['table_name']} ( {$cfg['columns']} )";
} }
} }

View File

@ -11,4 +11,4 @@ foreach ($bb_cfg['cache']['engines'] as $cache_name => $cache_val)
$changes = CACHE($cache_name)->gc(); $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"; $cron_runtime_log = date('Y-m-d H:i:s') ." -- ". str_pad("$cache_name ", 25, '-', STR_PAD_RIGHT) ." del: $changes\n";
} }
} }

View File

@ -73,4 +73,4 @@ class datastore_sqlite extends datastore_common
{ {
return class_exists('SQLite3'); return class_exists('SQLite3');
} }
} }