mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
12 lines
294 B
PHP
12 lines
294 B
PHP
<?php
|
|
|
|
// crmv@193294
|
|
require_once('include/utils/VTEProperties.php');
|
|
$VP = VTEProperties::getInstance();
|
|
|
|
$keys = $VP->get('performance.global_cache_keys');
|
|
if (is_array($keys) && !in_array('tablecache', $keys)) {
|
|
$keys[] = 'tablecache';
|
|
$VP->set('performance.global_cache_keys', $keys);
|
|
}
|