Merge branch 'next-minor' into develop

This commit is contained in:
Benjamin Neff 2016-09-11 23:06:27 +02:00
commit b3b4ccd553
2 changed files with 6 additions and 5 deletions

View file

@ -25,6 +25,7 @@
* Fixed missing sidebar background in the contacts tab [#7064](https://github.com/diaspora/diaspora/pull/7064)
* Fix tags URLs in hovercards [#7075](https://github.com/diaspora/diaspora/pull/7075)
* Fix 500 in html requests for post interactions [#7085](https://github.com/diaspora/diaspora/pull/7085)
* Remove whitespaces next to like link in stream [#7088](https://github.com/diaspora/diaspora/pull/7088)
## Features
* Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045)

View file

@ -18,11 +18,11 @@
<span>{{t "stream.like"}}</span>
{{else}}
<a href="#" class="like" rel='nofollow'>
{{#if userLike}}
{{t "stream.unlike"}}
{{else}}
{{t "stream.like"}}
{{/if}}
{{~#if userLike~}}
{{~t "stream.unlike"~}}
{{~else~}}
{{~t "stream.like"~}}
{{~/if~}}
</a>
{{/if}}
·