diff --git a/e107_handlers/comment_class.php b/e107_handlers/comment_class.php index 4a9b9562f..40117c6bd 100644 --- a/e107_handlers/comment_class.php +++ b/e107_handlers/comment_class.php @@ -1165,7 +1165,14 @@ class comment } else { - $comment = "
".COMLAN_328."
"; + if(BOOTSTRAP) + { + $comment = e107::getMessage()->addInfo(COMLAN_328)->render(); + } + else + { + $comment = "
".COMLAN_328."
"; + } } $containerTarget = "comments-container-".$frm->name2id($table); diff --git a/e107_plugins/news/news.php b/e107_plugins/news/news.php index dbb0d24e1..261010c26 100644 --- a/e107_plugins/news/news.php +++ b/e107_plugins/news/news.php @@ -1301,11 +1301,11 @@ class news_front { if(BOOTSTRAP) { - return e107::getMessage()->addInfo(COMLAN_328)->render(); + return e107::getMessage()->addInfo(LAN_NEWS_13)->render(); } else { - return "
".COMLAN_328."
"; + return "
".LAN_NEWS_13."
"; } } }