This commit is contained in:
David Walsh 2016-01-28 12:25:18 -06:00
Родитель e139885ec9
Коммит b199011ed8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ class SW_Cache_DB {
public static function on_activate() {
// Set default options.
update_option('wp_sw_cache_enabled', false);
update_option('wp_sw_cache_name', $this->$cache_prefix.'-'.time());
update_option('wp_sw_cache_name', self::$cache_prefix.'-'.time());
update_option('wp_sw_cache_files', array());
}