Лучший Ответ Cheren-dow , 02 April 2014 - 10:47
Попробуйте еще это
public function hasValue($params = array())
{
return (bool) $this->get('value', $this->config->get('default'));
}
Заменить на
public function hasValue($params = array())
{
return (bool) $this->get('value', $this->config->get('default', 1));
}
и еще один кусок
if (!$this->get('value', $this->config->get('default')))
{
return '';
}
заменить на
if (!$this->get('value', $this->config->get('default', 1)))
{
return '';
}
Перейти к сообщению


Тема закрыта










