X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=boot.php;h=bbfd671955215a1e5ebb4847a98654efdbaea41b;hb=75be187216255c7c45421cb5f9596118a954f878;hp=c20f48cfa436ea86b67b1c167eb0271d4f4f40bd;hpb=287c9cfbdd156ddc4edbea6b9b76d950071aaf04;p=friendica.git diff --git a/boot.php b/boot.php index c20f48cfa4..bbfd671955 100644 --- a/boot.php +++ b/boot.php @@ -1801,9 +1801,13 @@ function proc_run($cmd){ $priority = 2; if (!$found) - q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`) - VALUES ('%s', '%s', '%s', %d)", - dbesc($funcname), + // quickfix for the delivery problems, 2106-07-28 + /// @todo find better solution + //q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`) + // VALUES ('%s', '%s', '%s', %d)", + // dbesc($funcname), + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", dbesc($parameters), dbesc(datetime_convert()), intval($priority));