From 57ef2d341c1ccab981c2a48b758f37a8440479dc Mon Sep 17 00:00:00 2001 From: OsaAjani Date: Fri, 22 Jan 2016 00:20:20 +0100 Subject: [PATCH] Fix ajout des webhook_queries --- controllers/webhooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/webhooks.php b/controllers/webhooks.php index 450e9d8..b6b1e66 100755 --- a/controllers/webhooks.php +++ b/controllers/webhooks.php @@ -173,7 +173,7 @@ { global $db; - if (!$db->insertIntoTable('webhook_queries', ['url' => $url, ['datas' => json_encode($datas)]])) + if (!$db->insertIntoTable('webhook_queries', ['url' => $url, 'datas' => json_encode($datas)])) { return false; }