diff options
author | friendica <info@friendica.com> | 2011-11-27 04:09:14 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-27 04:09:14 -0800 |
commit | cf7568efd72e93f1807c8560b78cae2580667413 (patch) | |
tree | 6b8af40094a08cfcd0b598afe1328f148d8c20de /include/diaspora.php | |
parent | 0f4a42f550b5bc863cec7c7a3fca26a028599dcc (diff) | |
download | volse-hubzilla-cf7568efd72e93f1807c8560b78cae2580667413.tar.gz volse-hubzilla-cf7568efd72e93f1807c8560b78cae2580667413.tar.bz2 volse-hubzilla-cf7568efd72e93f1807c8560b78cae2580667413.zip |
extract private images before bbcode translation since preg has issues with large data sizes.
Diffstat (limited to 'include/diaspora.php')
-rw-r--r-- | include/diaspora.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 36457655e..0ffb22b95 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1303,6 +1303,7 @@ function diaspora_retraction($importer,$xml) { return; if($type === 'Person') { + require_once('include/Contact.php'); contact_remove($contact['id']); } elseif($type === 'Post') { |