Просмотр исходного кода

Updated tagCache to tagcache name to make it possible to adjust via application.ini or other

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20580 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic 16 лет назад
Родитель
Сommit
26fc475b8b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      library/Zend/Cache/Manager.php

+ 2 - 2
library/Zend/Cache/Manager.php

@@ -91,7 +91,7 @@ class Zend_Cache_Manager
             ),
         ),
         // Tag Cache
-        'tagCache' => array(
+        'tagcache' => array(
             'frontend' => array(
                 'name'    => 'Core',
                 'options' => array(
@@ -155,7 +155,7 @@ class Zend_Cache_Manager
                 || !$this->_optionTemplates[$name]['backend']['options']['tag_cache'] instanceof Zend_Cache_Core)
             ) {
                 $this->_optionTemplates[$name]['backend']['options']['tag_cache']
-                    = $this->getCache('tagCache');
+                    = $this->getCache('tagcache');
             }
             $this->_caches[$name] = Zend_Cache::factory(
                 $this->_optionTemplates[$name]['frontend']['name'],