Ошибка после перевода с ПШП 5.2 на 5.3
Warning: The magic method __isset() must have public visibility and cannot be static in /home/vadim.bobr5/www/avtosdelka.by/classes/Zend/Config.php on line 181 Warning: The magic method __unset() must have public visibility and cannot be static in /home/vadim.bobr5/www/avtosdelka.by/classes/Zend/Config.php on line 193
181 protected function __isset($name)
182 {
183 return isset($this->_data[$name]);
184 }
185
/**
* Support unset() overloading on PHP 5.1
*
* @param string $name
* @throws Zend_Config_Exception
* @return void
*/
193 protected function __unset($name)
{
if ($this->_allowModifications) {
unset($this->_data[$name]);
} else {
/** @see Zend_Config_Exception */
require_once 'Zend/Config/Exception.php';
throw new Zend_Config_Exception('Zend_Config is read only');
Как исправить ошибку ???
}