diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-25 11:26:33 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-25 11:26:33 -0800 |
commit | 79c0d52daa92b60e8eed80fa9459367c26f97122 (patch) | |
tree | 6bb2e206ef30cab5ce0cfbcf46b413f0633d57ee /lib/distribqueuehandler.php | |
parent | 39a8e9d8e679cfd02e47fa93aa26373101515cf9 (diff) |
OStatus: save categories from the Atom entry as hashtags.
Diffstat (limited to 'lib/distribqueuehandler.php')
-rw-r--r-- | lib/distribqueuehandler.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php index dc183fb36..d2be7a92c 100644 --- a/lib/distribqueuehandler.php +++ b/lib/distribqueuehandler.php @@ -63,24 +63,12 @@ class DistribQueueHandler // XXX: do we need to change this for remote users? try { - $notice->saveTags(); - } catch (Exception $e) { - $this->logit($notice, $e); - } - - try { $notice->addToInboxes(); } catch (Exception $e) { $this->logit($notice, $e); } try { - $notice->saveUrls(); - } catch (Exception $e) { - $this->logit($notice, $e); - } - - try { Event::handle('EndNoticeSave', array($notice)); // Enqueue for other handlers } catch (Exception $e) { |