ОсновноеRadiotalkПользовательское
Программирование
6   •   Посмотреть все темы

Do HTML in the news

 

1732
DirtyDollar @DirtyDollar
Кто на сегодня хочет поработать? Вообшем надо Внедрить код "Parse HTML tag on the fly" в "News Tease Code Below", так что-бы в новостях выводился HTML.
//--------------------------------------------------------------
// Parse HTML tag on the fly
//--------------------------------------------------------------
if ( $this->forum['use_html'] == 1 )
{
// So far, so good..
if ( stristr( $row['post'], '[dohtml]' ) )
{
// [doHTML] tag found..
$parse = ($this->forum['use_html'] AND $row['g_dohtml']) ? 1 : 0;
$row['post'] = $this->parser->post_db_parse($row['post'], $parse );
}
}

// News Tease Code Below -------------------------
if ( $ibforums->vars['portal_tease_news'] )

{ $length = $ibforums->vars['portal_tease_length'];

$row['post_body'] = substr(trim($row['post']), 0, $length);
$row['post_body_extra'] = " ... [<a href='{$ibforums->vars['board_url']}/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=ST&f=".$row['forum_id']."&t=".$row['tid']."'>{$ibforums->lang['news_more']}</a>]";
}
else
{ $row['post_body'] = $row['post'];
$row['post_body_extra'] = "";
}
// End News Tease Code ---------------------------

Отредактировано DirtyDollar - 12.12.2008