1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 17:58:24 +03:00

Мелкие фиксы

This commit is contained in:
Mzhelskiy Maxim 2017-01-28 14:37:04 +07:00
parent 0e969de454
commit 3ebbae6c10
3 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@
{* Текст сообщения *} {* Текст сообщения *}
{component 'editor' {component 'editor'
sSet = 'light' sSet = 'light'
sMediaTargetType = 'talk' mediaTargetType = 'talk'
id = 'talk_text' id = 'talk_text'
name = 'talk_text' name = 'talk_text'
rules = [ 'required' => true, 'length' => '[2,3000]' ] rules = [ 'required' => true, 'length' => '[2,3000]' ]

View file

@ -60,11 +60,11 @@
{capture 'info_private_geo'} {capture 'info_private_geo'}
<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address"> <span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
{if $geoTarget->getCountryId()} {if $geoTarget->getCountryId()}
<a href="{router page='people'}country/{$geoTarget->getCountryId()}/" itemprop="country-name">{$user->getProfileCountry()|escape}</a>{if $geoTarget->getCityId()},{/if} <span itemprop="country-name">{$user->getProfileCountry()|escape}</span>{if $geoTarget->getCityId()},{/if}
{/if} {/if}
{if $geoTarget->getCityId()} {if $geoTarget->getCityId()}
<a href="{router page='people'}city/{$geoTarget->getCityId()}/" itemprop="locality">{$user->getProfileCity()|escape}</a> <span itemprop="locality">{$user->getProfileCity()|escape}</span>
{/if} {/if}
</span> </span>
{/capture} {/capture}

View file

@ -68,11 +68,11 @@
{capture 'info_private_geo'} {capture 'info_private_geo'}
<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address"> <span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
{if $geoTarget->getCountryId()} {if $geoTarget->getCountryId()}
<a href="{router page='people'}country/{$geoTarget->getCountryId()}/" itemprop="country-name">{$user->getProfileCountry()|escape}</a>{if $geoTarget->getCityId()},{/if} <span itemprop="country-name">{$user->getProfileCountry()|escape}</span>{if $geoTarget->getCityId()},{/if}
{/if} {/if}
{if $geoTarget->getCityId()} {if $geoTarget->getCityId()}
<a href="{router page='people'}city/{$geoTarget->getCityId()}/" itemprop="locality">{$user->getProfileCity()|escape}</a> <span itemprop="locality">{$user->getProfileCity()|escape}</span>
{/if} {/if}
</span> </span>
{/capture} {/capture}