aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-12-04 15:42:48 +0100
committerMax Kostikov <max@kostikov.co>2019-12-04 15:42:48 +0100
commit2dd2b755f121cc3cb701f5255222bacc5f360b82 (patch)
tree60699ffd59ba106102b844410223d846867aeef9 /view
parent5998445841225c286a7155d100dddc4c31079e84 (diff)
parenta6516341c50fb54b0d40b12fe76230f07e499fb2 (diff)
downloadvolse-hubzilla-2dd2b755f121cc3cb701f5255222bacc5f360b82.tar.gz
volse-hubzilla-2dd2b755f121cc3cb701f5255222bacc5f360b82.tar.bz2
volse-hubzilla-2dd2b755f121cc3cb701f5255222bacc5f360b82.zip
Merge branch 'dev' into 'dev'
Show unpin button in pinned post for owner only See merge request hubzilla/core!1799
Diffstat (limited to 'view')
-rw-r--r--view/tpl/pinned_item.tpl4
1 files changed, 3 insertions, 1 deletions
diff --git a/view/tpl/pinned_item.tpl b/view/tpl/pinned_item.tpl
index 17e82b410..a24c4ae44 100644
--- a/view/tpl/pinned_item.tpl
+++ b/view/tpl/pinned_item.tpl
@@ -137,7 +137,9 @@
{{if $plink}}
<a class="dropdown-item" href="{{$plink.href}}" title="{{$plink.title}}" class="u-url"><i class="generic-icons-nav fa fa-fw fa-external-link"></i>{{$plink.title}}</a>
{{/if}}
- <a class="dropdown-item dropdown-item-pinnable" href="#" onclick="dopin({{$id}}); return false;"><i class="generic-icons-nav fa fa-fw fa-thumb-tack"></i>{{$pinme}}</a>
+ {{if $pinme}}
+ <a class="dropdown-item dropdown-item-pinnable" href="#" onclick="dopin({{$id}}); return false;"><i class="generic-icons-nav fa fa-fw fa-thumb-tack"></i>{{$pinme}}</a>
+ {{/if}}
{{if $hide}}
<a class="dropdown-item" href="#" onclick="dopinhide({{$id}}); return false;" class="u-url"><i class="generic-icons-nav fa fa-fw fa-remove"></i>{{$hide}}</a>
{{/if}}