aboutsummaryrefslogtreecommitdiffstats
path: root/include/directory.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-24 19:40:36 -0700
committerfriendica <info@friendica.com>2014-03-24 19:40:36 -0700
commit50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c (patch)
treeda864633df97fd26a9718b6c831c3fb4a938aca0 /include/directory.php
parent235b0335608439b98d74a205a380d0f77baf6b4f (diff)
downloadvolse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.tar.gz
volse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.tar.bz2
volse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.zip
this should improve queue performance dramatically.
Diffstat (limited to 'include/directory.php')
-rw-r--r--include/directory.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/directory.php b/include/directory.php
index 794420b6f..c69fb1f4b 100644
--- a/include/directory.php
+++ b/include/directory.php
@@ -69,11 +69,12 @@ function directory_run($argv, $argc){
// the directory packet. That means we'll try again on the next poll run.
$hash = random_string();
- q("insert into outq ( outq_hash, outq_account, outq_channel, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg )
- values ( '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s' )",
+ q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg )
+ values ( '%s', %d, %d, '%s', '%s', %d, '%s', '%s', '%s', '%s' )",
dbesc($hash),
intval($channel['channel_account_id']),
intval($channel['channel_id']),
+ dbesc('zot'),
dbesc($url),
intval(1),
dbesc(datetime_convert()),