Fix wrong column name in Controllers\Web\Servers
This commit is contained in:
parent
726f016a5b
commit
46db64872a
|
@ -63,7 +63,7 @@ FROM `server` s
|
|||
WHERE `reg_policy` = "REGISTER_OPEN"
|
||||
AND `available`
|
||||
AND NOT `hidden`
|
||||
ORDER BY `health_score` DESC, `ssl_state` DESC, `info` != "" DESC, `dt_last_probed` DESC
|
||||
ORDER BY `health_score` DESC, `ssl_state` DESC, `info` != "" DESC, `last_seen` DESC
|
||||
LIMIT :start, :limit';
|
||||
$servers = $this->atlas->fetchAll($stmt, [
|
||||
'start' => [$pager->getStart(), PDO::PARAM_INT],
|
||||
|
|
Loading…
Reference in a new issue