mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
User: Don't show "Send Gift" to unauthorized users
I also added a "title" attribute to the gifts themselves, so you can understand the text that was sent via the gift without having to open the list unnecessarily.
This commit is contained in:
parent
7d71dd6ace
commit
d1344d0cf8
1 changed files with 4 additions and 3 deletions
|
@ -486,8 +486,8 @@
|
||||||
<div class="content_subtitle">
|
<div class="content_subtitle">
|
||||||
{tr("gifts", $giftCount)}
|
{tr("gifts", $giftCount)}
|
||||||
<div style="float:right;">
|
<div style="float:right;">
|
||||||
{if OPENVK_ROOT_CONF['openvk']['preferences']['commerce']}
|
{if OPENVK_ROOT_CONF['openvk']['preferences']['commerce'] && !is_null($thisUser)}
|
||||||
<a href="/gifts?act=pick&user={$user->getId()}">{_send_gift}</a> |
|
<a href="/gifts?act=pick&user={$user->getId()}">{_send_gift}</a> |
|
||||||
{/if}
|
{/if}
|
||||||
<a href="/gifts{$user->getId()}">{_all_title}</a>
|
<a href="/gifts{$user->getId()}">{_all_title}</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -499,7 +499,8 @@
|
||||||
<a href="{$hideInfo ? 'javascript:false' : $giftDescriptor->sender->getURL()}">
|
<a href="{$hideInfo ? 'javascript:false' : $giftDescriptor->sender->getURL()}">
|
||||||
<img style="width: 70px; max-height: 70px;"
|
<img style="width: 70px; max-height: 70px;"
|
||||||
src="{$giftDescriptor->gift->getImage(2)}"
|
src="{$giftDescriptor->gift->getImage(2)}"
|
||||||
alt="{$hideInfo ? tr('gift') : ($giftDescriptor->caption ?? tr('gift'))}" />
|
alt="{$hideInfo ? tr('gift') : ($giftDescriptor->caption ?? tr('gift'))}"
|
||||||
|
title="{$hideInfo ? tr('gift') : ($giftDescriptor->caption ?? tr('gift'))}" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue