Skip to content

Commit

Permalink
Merge branch 'next-minor' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperTux88 committed May 15, 2017
2 parents ee05cc8 + 6abd050 commit e463397
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

## Refactor
* Remove rails\_admin [#7440](https://github.com/diaspora/diaspora/pull/7440)
* Use guid instead of id at permalink and in SPV [#7453](https://github.com/diaspora/diaspora/pull/7453)

## Bug fixes
* Make photo upload button hover text translatable [#7429](https://github.com/diaspora/diaspora/pull/7429)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
{{/if}}
<span class="post-time">
{{#if root}}
<a href="/posts/{{root.id}}">
<a href="/posts/{{root.guid}}">
<time datetime="{{root.created_at}}" title="{{localTime root.created_at}}" />
</a>
{{else}}
<a href="/posts/{{id}}">
<a href="/posts/{{guid}}">
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
</a>
{{/if}}
Expand Down Expand Up @@ -91,7 +91,7 @@
</span>
<div class="post-context">
<span class="post-time">
<a href="/posts/{{id}}">
<a href="/posts/{{guid}}">
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
</a>
</span>
Expand Down
2 changes: 1 addition & 1 deletion app/assets/templates/stream-element_tpl.jst.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<time class="timeago" data-original-title="{{{localTime created_at}}}" datetime="{{created_at}}" />
</a>

<a href="/posts/{{id}}" class="permalink" title="{{t "stream.permalink"}}">
<a href="/posts/{{guid}}" class="permalink" title="{{t "stream.permalink"}}">
<i class="entypo-link"></i>
</a>
{{/if}}
Expand Down

0 comments on commit e463397

Please sign in to comment.