aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-11-17 13:45:00 +0100
committerMario Vavti <mario@mariovavti.com>2015-11-17 13:45:00 +0100
commit868a0d8a90c5e582bb783247fbf3a26f5226b126 (patch)
tree39ed7d37a74e975d281fcfe978d539726c412aa4 /include/conversation.php
parent5079dff338103aeb1b6dc9ac1de8a848d8b5e936 (diff)
downloadvolse-hubzilla-868a0d8a90c5e582bb783247fbf3a26f5226b126.tar.gz
volse-hubzilla-868a0d8a90c5e582bb783247fbf3a26f5226b126.tar.bz2
volse-hubzilla-868a0d8a90c5e582bb783247fbf3a26f5226b126.zip
missing closing " for src attribute
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index a7d5f3fa5..09a6d51d7 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1025,7 +1025,7 @@ function builtin_activity_puller($item, &$conv_responses) {
if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) {
$name = (($item['author']['xchan_name']) ? $item['author']['xchan_name'] : t('Unknown'));
$url = (($item['author']['xchan_url'] && $item['author']['xchan_photo_s'])
- ? '<a href="' . chanlink_url($item['author']['xchan_url']) . '">' . '<img class="response-photo" src="' . zid($item['author']['xchan_photo_s']) . ' alt="' . urlencode($name) . '" /> ' . $name . '</a>'
+ ? '<a href="' . chanlink_url($item['author']['xchan_url']) . '">' . '<img class="response-photo" src="' . zid($item['author']['xchan_photo_s']) . '" alt="' . urlencode($name) . '" /> ' . $name . '</a>'
: '<a href="#" class="disabled">' . $name . '</a>'
);