diff options
author | friendica <info@friendica.com> | 2013-08-22 06:15:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-22 06:15:00 -0700 |
commit | 99a9aee03e55af84f6963bbdbe3e365a7721e93d (patch) | |
tree | 66793a16ca7271207450482631c4b2b97cef1146 | |
parent | 141c8ccb1f94b9ce80466aa6be178d97e3f290bf (diff) | |
download | volse-hubzilla-99a9aee03e55af84f6963bbdbe3e365a7721e93d.tar.gz volse-hubzilla-99a9aee03e55af84f6963bbdbe3e365a7721e93d.tar.bz2 volse-hubzilla-99a9aee03e55af84f6963bbdbe3e365a7721e93d.zip |
extra logging for translating likes in notification emails - which is still failing on occasion.
-rw-r--r-- | include/conversation.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 9dab5931b..6e6ffef94 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -162,6 +162,9 @@ function localize_item(&$item){ $item['body'] .= "\n\n\n" . '[zrl=' . chanlink_url($author_link) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]'; } + else { + logger('localize_item like failed: link ' . $author_link . ' name ' . $author_name . ' url ' . $item_url); + } } |