diff --git a/e107_files/shortcode/batch/news_shortcodes.php b/e107_files/shortcode/batch/news_shortcodes.php index db6e776eb..abda8efe8 100644 --- a/e107_files/shortcode/batch/news_shortcodes.php +++ b/e107_files/shortcode/batch/news_shortcodes.php @@ -1,10 +1,18 @@ e107->tp->toHTML($this->news_item['news_title'], TRUE,'no_hook,emotes_off, no_make_clickable'); + $news_title = $this->e107->tp->toHTML($this->news_item['news_title'], TRUE,'TITLE'); return "
".($this->news_item['news_render_type'] == 1 ? "news_item['news_id'].'&sef='.$this->news_item['news_rewrite_string'])."'>".$news_title."" : $news_title)."
"; } function sc_admincaption() { - $news_title = $this->e107->tp->toHTML($this->news_item['news_title'], TRUE,'no_hook,emotes_off, no_make_clickable'); + $news_title = $this->e107->tp->toHTML($this->news_item['news_title'], TRUE,'TITLE'); return "
".($this->news_item['news_render_type'] == 1 ? "news_item['news_id'].'&sef='.$this->news_item['news_rewrite_string'])."'>".$news_title."" : $news_title)."
"; } diff --git a/news.php b/news.php index eaf952bd1..556912fcd 100644 --- a/news.php +++ b/news.php @@ -9,10 +9,17 @@ * News frontend * * $Source: /cvs_backup/e107_0.8/news.php,v $ - * $Revision: 1.25 $ - * $Date: 2009-12-12 16:40:39 $ - * $Author: secretr $ + * $Revision: 1.26 $ + * $Date: 2009-12-30 21:04:11 $ + * $Author: e107steved $ */ +/** + * @package e107 + * @subpackage user + * @version $Id: news.php,v 1.26 2009-12-30 21:04:11 e107steved Exp $; + * + * News front page display + */ require_once("class2.php"); include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/lan_'.e_PAGE); @@ -163,7 +170,7 @@ if ($action == 'cat' || $action == 'all') if($action == 'cat') setNewsFrontMeta($newsList[1], 'category'); elseif($category_name) { - define("e_PAGETITLE", $tp->toHTML($category_name,FALSE,"TITLE")); + define('e_PAGETITLE', $tp->toHTML($category_name,FALSE,'TITLE')); } require_once(HEADERF); @@ -212,11 +219,11 @@ if ($action == 'cat' || $action == 'all') if(!$NEWSLISTTITLE) { - $NEWSLISTTITLE = LAN_NEWS_82." '".$tp->toHTML($category_name,FALSE,"TITLE")."'"; + $NEWSLISTTITLE = LAN_NEWS_82." '".$tp->toHTML($category_name,FALSE,'TITLE')."'"; } else { - $NEWSLISTTITLE = str_replace("{NEWSCATEGORY}",$tp->toHTML($category_name,FALSE,"TITLE"),$NEWSLISTTITLE); + $NEWSLISTTITLE = str_replace("{NEWSCATEGORY}",$tp->toHTML($category_name,FALSE,'TITLE'),$NEWSLISTTITLE); } ob_start(); @@ -522,7 +529,7 @@ $frows = $sql -> db_Fetch(); //echo "
Total ".$news_total." items found, ".count($newsAr)." displayed, Interval = {$interval}

"; -$p_title = ($action == "item") ? $newsAr[1]['news_title'] : $tp->toHTML($newsAr[1]['category_name'],FALSE,"TITLE"); +$p_title = ($action == "item") ? $newsAr[1]['news_title'] : $tp->toHTML($newsAr[1]['category_name'],FALSE,'TITLE'); switch($action) { @@ -792,7 +799,7 @@ function renderCache($cache, $nfp = FALSE){ function render_newscats(){ // -- CNN Style Categories. ---- global $pref,$ns,$tp; if (isset($pref['news_cats']) && $pref['news_cats'] == '1') { - $text3 = $tp->toHTML("{NEWS_CATEGORIES}", TRUE, 'parse_sc,nobreak,emotes_off,no_make_clickable'); + $text3 = $tp->toHTML("{NEWS_CATEGORIES}", TRUE, 'TITLE'); $ns->tablerender(LAN_NEWS_23, $text3, 'news_cat'); } }