mirror of
https://github.com/openvk/openvk
synced 2025-07-07 08:19:49 +03:00
Compare commits
6 commits
b492f0830e
...
90a8c7d661
Author | SHA1 | Date | |
---|---|---|---|
|
90a8c7d661 | ||
|
5e7ac304a5 | ||
|
bf65910730 | ||
|
425e148ee5 | ||
|
756dcf68e3 | ||
|
153206f9ba |
2 changed files with 7 additions and 1 deletions
|
@ -458,8 +458,11 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr n:if="!is_null($user->getBirthday())">
|
<tr n:if="!is_null($user->getBirthday())">
|
||||||
<td class="label"><span class="nobold">{_birth_date}:</span></td>
|
<td class="label"><span class="nobold">{_birth_date}:</span></td>
|
||||||
<td n:if="$user->getBirthdayPrivacy() == 0" class="data">{$user->getBirthday()->format('%e %B %Y')},
|
{if $user->onlineStatus() != 2 && $user->getBirthdayPrivacy() == 0}
|
||||||
|
<td class="data">{$user->getBirthday()->format('%e %B %Y')},
|
||||||
{tr("years", $user->getAge())}</td>
|
{tr("years", $user->getAge())}</td>
|
||||||
|
{/if}
|
||||||
|
<td n:if="$user->onlineStatus() == 2" class="data">{$user->getBirthday()->format('%e %B %Y')}</td>
|
||||||
<td n:if="$user->getBirthdayPrivacy() == 1" class="data">{$user->getBirthday()->format('%e %B')}</td>
|
<td n:if="$user->getBirthdayPrivacy() == 1" class="data">{$user->getBirthday()->format('%e %B')}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
3
install/sqls/00055-agent-card-fix.sql
Normal file
3
install/sqls/00055-agent-card-fix.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
ALTER TABLE `support_names`
|
||||||
|
DROP PRIMARY KEY,
|
||||||
|
ADD PRIMARY KEY(`id`);
|
Loading…
Reference in a new issue