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