make like counter clickable in first like

This commit is contained in:
Faeze Moradi 2020-10-23 16:03:25 +02:00
parent 03867c5ce3
commit fd01f3827d
2 changed files with 7 additions and 6 deletions

View File

@ -84,3 +84,4 @@ HumHub Changelog
- Chng #4509: Removed `humhub\modules\space\widgets\Picker` which is deprecated since v1.2
- Fix #4396: Submitting only picture in comment results in debug error.
- Enh #4469: Added alias for file uploads folder
- Fix #4513: Make like counter clickable in first like

View File

@ -19,13 +19,13 @@ humhub\modules\like\assets\LikeAsset::register($this);
</a>
<?php endif; ?>
<?php if (count($likes) > 0) { ?>
<!-- Create link to show all users, who liked this -->
<a href="<?php echo $userListUrl; ?>" data-target="#globalModal">
<a href="<?php echo $userListUrl; ?>" data-target="#globalModal">
<?php if (count($likes)) : ?>
<span class="likeCount tt" data-placement="top" data-toggle="tooltip" title="<?= $title ?>">(<?= count($likes) ?>)</span>
</a>
<?php } else { ?>
<span class="likeCount"></span>
<?php } ?>
<?php else: ?>
<span class="likeCount"></span>
<?php endif; ?>
</a>
</span>