aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-06-01 20:59:28 +0200
committerMario Vavti <mario@mariovavti.com>2018-06-01 20:59:28 +0200
commit56f0244360462d96e2737ca4407feb7909c170d8 (patch)
tree8ed7a2f245153105223eacd254c4a31d5f021009 /include/conversation.php
parent60a7e68b1b39ad24ec3978724fd166539d08d679 (diff)
downloadvolse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.tar.gz
volse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.tar.bz2
volse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.zip
fixes for css fix
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 4a1cdc7da..61ca208b2 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1162,7 +1162,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'] && $item['author']['xchan_photo_s'])
- ? '<a class="dropdown-item" href="' . chanlink_hash($item['author_xchan']) . '">' . '<img class="menu-img-1" src="' . zid($item['author']['xchan_photo_s']) . '" alt="' . urlencode($name) . '" />' . $name . '</a>'
+ ? '<a class="dropdown-item" href="' . chanlink_hash($item['author_xchan']) . '">' . '<img class="menu-img-1" src="' . zid($item['author']['xchan_photo_s']) . '" alt="' . urlencode($name) . '" /> ' . $name . '</a>'
: '<a class="dropdown-item" href="#" class="disabled">' . $name . '</a>'
);