вот описание класса
свойство устанавливается в методе
public function setDescription($description) {
$this->description = $description;
}
этот метод вызывается в
public function setMetaData($name, $content, $http_equiv = false, $sync = true) {
$name = strtolower($name);
if ($name == 'generator') {
$this->setGenerator($content);
} elseif ($name == 'description') {
$this->setDescription($content);
} else {
if ($http_equiv == true) {
$this->_metaTags['http-equiv'][$name] = $content;
// Syncing with HTTP-header
if($sync && strtolower($name) == 'content-type') {
$this->setMimeEncoding($content, false);
}
} else {
$this->_metaTags['standard'][$name] = $content;
}
}
}
осталось найти, где вызывается метод
->setMetaData('description', .....