Fix some errors

This commit is contained in:
Michael
2019-12-20 21:27:49 +00:00
parent 3c4f44a4ab
commit ef9bdfdff2
3 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ class UpdateServers
*/
public static function execute()
{
$gservers = DBA::select("SELECT `url`, `created`, `last_failure`, `last_contact` FROM `gserver` ORDER BY rand()");
$gservers = DBA::p("SELECT `url`, `created`, `last_failure`, `last_contact` FROM `gserver` ORDER BY rand()");
if (!DBA::isResult($gservers)) {
return;
}