| Author |
Message |
msimonds Regular


Joined: Jul 15, 2003 Posts: 56 Location: Dallas
|
Posted:
Sat Sep 20, 2003 1:20 pm |
|
I am not sure if anyone is interested in this but I modified some files to stop the word replacement for phpbb. I did this because I have one forum on my site that I allow cursing in. It works perfectly and is extremely easy to install. If you are interested just pm me
I am not going to post it unless I am asked, just do to the nature of the mod itself |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Sat Sep 20, 2003 1:33 pm |
|
If you mean the size or something that precludes the explantion, you might detail it at your site and then post a link to it. Just a thought. |
|
|
|
 |
msimonds Regular


Joined: Jul 15, 2003 Posts: 56 Location: Dallas
|
Posted:
Sat Sep 20, 2003 1:50 pm |
|
no i just mean that I want to respect other people's boards and get their (your) approval before I place a mod somewhere... It is not big at all and only involves 4 small changes in, in 4 modules, one each.. I will post it in awhile |
|
|
|
 |
Raven Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
|
Posted:
Sat Sep 20, 2003 2:02 pm |
|
We are a community and I welcome all mods that are proven safe Please feel free to post anything that will help fellow nukers! |
|
|
|
 |
msimonds Regular


Joined: Jul 15, 2003 Posts: 56 Location: Dallas
|
Posted:
Sat Sep 20, 2003 2:03 pm |
|
|
|
 |
msimonds Regular


Joined: Jul 15, 2003 Posts: 56 Location: Dallas
|
Posted:
Sat Sep 20, 2003 2:21 pm |
|
Here it is:
Open the modules/Forums/viewtopic.php
find:
| Code: | $replacement_word = array();
obtain_word_list($orig_word, $replacement_word); |
replace with
| Code: | if ($forum_id != '332') // change the number to forum to bypass
{
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);
} |
you have to also following modules and make the same changes:
posting.php
viewforum.php
topic_review.php
make a backup of all the modules that you made changes to and then upload and test! works great and i
have been using this for about 6 months |
|
|
|
 |
|
|
|
|