removed invalid fields
This commit is contained in:
parent
938845b2e4
commit
49dc45a90b
|
@ -9,13 +9,11 @@ class Tag {
|
||||||
global $tags;
|
global $tags;
|
||||||
if (isset($tags->db[$key])) {
|
if (isset($tags->db[$key])) {
|
||||||
$this->vars['name'] = $tags->db[$key]['name'];
|
$this->vars['name'] = $tags->db[$key]['name'];
|
||||||
$this->vars['template'] = $tags->db[$key]['template'];
|
|
||||||
$this->vars['description'] = $tags->db[$key]['description'];
|
|
||||||
$this->vars['key'] = $key;
|
$this->vars['key'] = $key;
|
||||||
$this->vars['permalink'] = DOMAIN_TAGS . $key;
|
$this->vars['permalink'] = DOMAIN_TAGS . $key;
|
||||||
$this->vars['list'] = $tags->db[$key]['list'];
|
$this->vars['list'] = $tags->db[$key]['list'];
|
||||||
} else {
|
} else {
|
||||||
$errorMessage = 'Category not found in database by key ['.$key.']';
|
$errorMessage = 'Tag not found in database by key ['.$key.']';
|
||||||
Log::set(__METHOD__.LOG_SEP.$errorMessage);
|
Log::set(__METHOD__.LOG_SEP.$errorMessage);
|
||||||
throw new Exception($errorMessage);
|
throw new Exception($errorMessage);
|
||||||
}
|
}
|
||||||
|
@ -44,16 +42,6 @@ class Tag {
|
||||||
return $this->getValue('permalink');
|
return $this->getValue('permalink');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function template()
|
|
||||||
{
|
|
||||||
return $this->getValue('template');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function description()
|
|
||||||
{
|
|
||||||
return $this->getValue('description');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Returns an array with the keys of pages linked to the tag
|
// Returns an array with the keys of pages linked to the tag
|
||||||
public function pages()
|
public function pages()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue