Fix column selection issue

This commit is contained in:
ruan 2016-07-06 17:37:24 +02:00
parent 1eba03cc29
commit 835152be95

View File

@ -142,7 +142,7 @@ class Page {
$selection .= ",CAST(warned AS UNSIGNED) AS warned"; $selection .= ",CAST(warned AS UNSIGNED) AS warned";
} }
if ($table !== $this->settings->table['kicks']) { if ($table !== $this->settings->table['kicks']) {
$selection .= "removed_by_name"; $selection .= ",removed_by_name";
} }
return $selection; return $selection;
} }