diff options
author | Friendika <info@friendika.com> | 2010-11-11 20:32:20 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-11 20:32:20 -0800 |
commit | 7db4a0dd2ee631c4b0652e5852b1bb6f5ca50e63 (patch) | |
tree | 3b2c764f16027fa4221a8f09e726c54b4558abc4 /mod | |
parent | 16ba93a5b14433f5090255999a1958d4bb2ed611 (diff) | |
download | volse-hubzilla-7db4a0dd2ee631c4b0652e5852b1bb6f5ca50e63.tar.gz volse-hubzilla-7db4a0dd2ee631c4b0652e5852b1bb6f5ca50e63.tar.bz2 volse-hubzilla-7db4a0dd2ee631c4b0652e5852b1bb6f5ca50e63.zip |
give orphans a second chance, linkify naked links
Diffstat (limited to 'mod')
-rw-r--r-- | mod/pubsub.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/pubsub.php b/mod/pubsub.php index 0f8d7fdc6..c55100c96 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -115,6 +115,10 @@ function pubsub_post(&$a) { consume_feed($xml,$importer,$contact,$feedhub,1); + // do it a second time so that any children find their parents. + + consume_feed($xml,$importer,$contact,$feedhub,1); + hub_post_return(); } |