It should use an empty-element tag.
On line 959 ff.
Code: Select all
echo "<meta name=\"keywords\" content=\"";
if (isset($this->tags['show'])) {
if (is_array($this->tags['show'])) {
foreach($this->tags['show'] AS $r) {
$not_first ? print(', ') : $not_first = true;
echo $r;
}
} else {
echo $this->tags['show'];
$not_first = true;
}
}
foreach($rows AS $r) {
if (empty($r['tag'])) {
continue;
}
$not_first ? print(', ') : $not_first = true;
echo htmlspecialchars($r['tag']);
}
echo "\">";Code: Select all
echo "\" />";