Commit eb61f46ff3cf07fcbc76c3c987561621282c06e0
1 parent
f35934fd
видоизменил шаблонный вывод title в head отзывов
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
common/messages/ru/app.php
... | ... | @@ -108,4 +108,6 @@ return [ |
108 | 108 | 'Office address' =>'Украина, Киев, ул. Кудрявская, 31/33', |
109 | 109 | 'Go to Homepage' =>'На главную', |
110 | 110 | 'ABC short' =>'ABClinic — медицинский центр', |
111 | + 'ABC short reverse' => 'медицинский центр ABClinic ', | |
112 | + | |
111 | 113 | ]; |
112 | 114 | \ No newline at end of file | ... | ... |
frontend/views/layouts/main.php
... | ... | @@ -195,7 +195,7 @@ $seoTitleName = $seo->title; |
195 | 195 | ) { |
196 | 196 | $serviceModel = new Service(['id' => $_GET['service_id']]); |
197 | 197 | $serviceName = $serviceModel->language->title; |
198 | - $seoTitleName = $this->params['breadcrumbs'][0] . ' - ' . $serviceName . ' - ' . \Yii::t('app', 'ABC short'); | |
198 | + $seoTitleName = $this->params['breadcrumbs'][0] . ' - ' . $serviceName . ' - ' . \Yii::t('app', 'ABC short reverse'); | |
199 | 199 | |
200 | 200 | } |
201 | 201 | ... | ... |