
05-30-2013, 04:12 PM
|
 |
|
|
Join Date: Apr 2008
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by RedTurtle
For Smilies in Forum Blocks:
Edit ./includes/class_block.php
Search for :
Code:
return htmlspecialchars_uni(fetch_censored_text(
trim(fetch_trimmed_title(strip_bbcode($page_text, $strip_quotes, false, false, true), $length))));
Replace with:
Code:
require_once(DIR . '/includes/class_bbcode.php');
$parser = new vB_BbCodeParser($this->registry, fetch_tag_list());
$parsed_text = $parser->do_parse(fetch_censored_text(trim(fetch_trimmed_title(strip_bbcode($page_text, $strip_quotes, false, false, true), $length))), false, true, false);
return $parsed_text;
This works on vB 4.2.0 but for some reason does not work on 4.2.1.
If anyone could provide a solution to get it to work on 4.2.1 that would be awesome.
EDIT: Actually this does work on 4.2.1 -- I was mistaken.
|
Brilliant!! Thanks!
|