Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Go to bottom Favoured: 0
TOPIC: Re:Get it here
#11433
Get it here 1 Year, 3 Months ago  
First download the badwords component from mamboxchange.com/frs/?group_id=251&release_id=671

Enable badword filtering in fireboard

Modify components/com_fireboard/template/default/post.php

Look for the following:
if ($fbConfig['badwords'])
{
$badwords = Badword::filter($fb_message_txt, $my);
if ($badwords == "true" {
$fb_message_txt = _COM_A_BADWORDS_NOTICE;
}
}

Replace by:
if ($fbConfig['badwords'])
{
require_once( 'components/com_badword/class.badword.php' );
$badwords = Badword::filter($fb_message_txt, $my);
if ($badwords == "true" {
$fb_message_txt = _COM_A_BADWORDS_NOTICE;
}
}

This fixes the Undefined class name 'badword' error when replying a post.

Works for me.
yash (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#12130
Re:Get it here 1 Year, 3 Months ago  
Thx a lot for sharing! Works great!

Still wish there was a module that would replace bad words with *****s instead of censoring the whole post, but its at least a good start.

fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1140
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#12861
Re:Get it here 1 Year, 3 Months ago  
Yep it would be great but we will have to wait
yash (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#12876
Re:Get it here 1 Year, 3 Months ago  
I believe that badwords2 will do this. You can find it here.

Then you will need to follow the instructions in this post.
whouse (Moderator)
FB Support Team
Moderator
Posts: 648
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/06/25 20:52 By whouse.
 
Please mark all resolved threads as SOLVED.
If you start a thread and the original topic is resolved, please edit the subject title of the original thread with SOLVED: at the beginning please.
 
The administrator has disabled public write access.  
Go to top