diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-06-01 20:59:28 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-06-01 20:59:28 +0200 |
commit | 56f0244360462d96e2737ca4407feb7909c170d8 (patch) | |
tree | 8ed7a2f245153105223eacd254c4a31d5f021009 /include | |
parent | 60a7e68b1b39ad24ec3978724fd166539d08d679 (diff) | |
download | volse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.tar.gz volse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.tar.bz2 volse-hubzilla-56f0244360462d96e2737ca4407feb7909c170d8.zip |
fixes for css fix
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
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>' ); |