From b907ad9dd867428d9712cef9d1c0b2f4cd7173ae Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 12 May 2017 16:25:44 +0000 Subject: [PATCH] dba is now used for writing the workerqueue as well --- boot.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/boot.php b/boot.php index 5815b8db1d..e3fb320ac5 100644 --- a/boot.php +++ b/boot.php @@ -1077,14 +1077,10 @@ function proc_run($cmd) { array_shift($argv); $parameters = json_encode($argv); - $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", dbesc($parameters)); + $found = dba::select('workerqueue', array('id'), array('parameter' => $parameters), array('limit' => 1)); if (!dbm::is_result($found)) { - q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) - VALUES ('%s', '%s', %d)", - dbesc($parameters), - dbesc(datetime_convert()), - intval($priority)); + dba::insert('workerqueue', array('parameter' => $parameters, 'created' => datetime_convert(), 'priority' => $priority)); } // Should we quit and wait for the poller to be called as a cronjob?