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

Merge pull request #290 from pfrankov/patch-1

fixed отображение описания персонального блога при создании топика
This commit is contained in:
Mzhelskiy Maxim 2013-07-09 21:40:34 -07:00
commit 18ad3d087a

View file

@ -1808,6 +1808,13 @@ class ActionBlog extends Action {
*/ */
if ($oBlog) { if ($oBlog) {
$sText=$oBlog->getDescription(); $sText=$oBlog->getDescription();
/**
* если блог персональный возвращаем текущий языковой эквивалент
*/
if ($sBlogId==0) {
$sText = $this->Lang_Get('blogs_personal_description');
}
$this->Viewer_AssignAjax('sText',$sText); $this->Viewer_AssignAjax('sText',$sText);
} }
} }
@ -1940,4 +1947,4 @@ class ActionBlog extends Action {
$this->Viewer_Assign('BLOG_USER_ROLE_BAN', ModuleBlog::BLOG_USER_ROLE_BAN); $this->Viewer_Assign('BLOG_USER_ROLE_BAN', ModuleBlog::BLOG_USER_ROLE_BAN);
} }
} }
?> ?>