diff --git a/e107_plugins/news/news.php b/e107_plugins/news/news.php index a832dc869..2e5ad0465 100644 --- a/e107_plugins/news/news.php +++ b/e107_plugins/news/news.php @@ -921,7 +921,7 @@ class news_front $c = 1; foreach($newsList as $row) { - $tpl = ($c === 1 && !empty($template['first'])) ? $template['first'] : $template['item']; + $tpl = ($c === 1 && !empty($template['first']) && $this->from === 0) ? $template['first'] : $template['item']; $text .= $this->ix->render_newsitem($row, 'return', '', $tpl, $param); $c++; diff --git a/e107_plugins/tinymce4/plugins/e107/plugin.js b/e107_plugins/tinymce4/plugins/e107/plugin.js index af77b79da..9abea0926 100644 --- a/e107_plugins/tinymce4/plugins/e107/plugin.js +++ b/e107_plugins/tinymce4/plugins/e107/plugin.js @@ -219,6 +219,8 @@ _e107_bbcode2html : function(s, url) { s = tinymce.trim(s); + // FIXME mod-security might block the ajax call below with Rules: 942230, 949110, 980130 - reason yet unknown. + // return s; var p = $.ajax({