diff options
author | Friendika <info@friendika.com> | 2011-10-04 03:06:34 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-04 03:06:34 -0700 |
commit | 07b09300a9aa6f10941b07dd289539b675d1e6ec (patch) | |
tree | 596e07b0597195662edce72e2c528031cb20d38b /mod/pubsub.php | |
parent | 3deaafe320e43927f0b784ccbd25b7b8caf001f2 (diff) | |
download | volse-hubzilla-07b09300a9aa6f10941b07dd289539b675d1e6ec.tar.gz volse-hubzilla-07b09300a9aa6f10941b07dd289539b675d1e6ec.tar.bz2 volse-hubzilla-07b09300a9aa6f10941b07dd289539b675d1e6ec.zip |
improve feed import performance
Diffstat (limited to 'mod/pubsub.php')
-rw-r--r-- | mod/pubsub.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php index b2f006927..0c506db00 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -132,11 +132,11 @@ function pubsub_post(&$a) { require_once('include/items.php'); - consume_feed($xml,$importer,$contact,$feedhub,1); + consume_feed($xml,$importer,$contact,$feedhub,1,1); // do it a second time so that any children find their parents. - consume_feed($xml,$importer,$contact,$feedhub,1); + consume_feed($xml,$importer,$contact,$feedhub,1,2); hub_post_return(); |