/system/library/seopro.php
public function __destruct() {
if(!$this->config->get('config_seo_pro'))
return;
if ($this->config->get('config_seo_url_cache')){
$this->cache->set('seopro.keywords', $this->keywords);
$this->cache->set('seopro.queries', $this->queries);
$this->cache->set('seopro.cat_tree', $this->cat_tree);
$this->cache->set('seopro.product_categories', $this->product_categories);
}
}
Я не знаю какую цель преследовал автор, может быть он что-то забыл?
Возможно надо вот так хотя бы:
public function __destruct() {
if(!$this->config->get('config_seo_pro'))
return;
if ($this->config->get('config_seo_url_cache') && !$this->cache->get('seopro.keywords')){
$this->cache->set('seopro.keywords', $this->keywords);
$this->cache->set('seopro.queries', $this->queries);
$this->cache->set('seopro.cat_tree', $this->cat_tree);
$this->cache->set('seopro.product_categories', $this->product_categories);
}
}