Code: Select all
$viewtype = '';
if ($this->get_config('viewtype') == 'comments') {
$viewtype .= ' AND c.type = \'NORMAL\'';
} elseif ($this->get_config('viewtype') == 'trackbacks') {
$viewtype .= ' AND c.type = \'TRACKBACK\'';
}
Code: Select all
$viewtype = '';
if ($this->get_config('viewmode') == 'comments') {
$viewtype .= ' AND c.type = \'NORMAL\'';
} elseif ($this->get_config('viewmode') == 'trackbacks') {
$viewtype .= ' AND c.type = \'TRACKBACK\'';
}