Area51 @ 4seven.de

Mod Base and Testarea
It is currently 23 Feb 2025, 15:21

All times are UTC + 1 hour




Post new topic TOPIC_LOCKED  [ 1 post ] 
Author Message
PostPosted: 05 Jun 2012, 14:21 
Offline
Tiptop
Tiptop
User avatar

Joined: 11 Feb 2008, 11:49
Posts: 241
Html replacement in word censor

With this snippet you can use html for word censor in posts

Requested by: Mike3396
Request topic: http://www.phpbb.com/community/viewtopi ... &t=2157114

ACP > Word Censor

Attachment:
banana_acp_word_censor.png
banana_acp_word_censor.png [ 504.72 KiB | Viewed 2362 times ]

Result

Attachment:
banana_result.png
banana_result.png [ 176.48 KiB | Viewed 2362 times ]

http://4seven.bplaced.net/forum/7test/v ... hp?f=2&t=3

Instruction

open

includes/functions_content.php

find

Code:
    if (sizeof($censors))
    {
        return preg_replace($censors['match'], $censors['replace'], $text);
    }


replace with

Code:
        // Html replacement in word censor / 4seven / 2012
        if (sizeof($censors))
        {

        $script_name = pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME);    
        
        if
($script_name == 'viewtopic')
        {
        return preg_replace($censors['match'], str_replace(array('&lt;','&quot;','&gt;'), array('<','"','>'), $censors['replace']), $text);
        }
        else
        
{
        $censors['replace'] = preg_replace('#&lt;(.*?)&gt;#is', '', $censors['replace']);
        return preg_replace($censors['match'], $censors['replace'], $text);
        }

        }
        // Html replacement in word censor / 4seven / 2012          

_________________
Mod-Bot / Service-Team


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic TOPIC_LOCKED  [ 1 post ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group
[ Time : 0.012s | 23 Queries | GZIP : Off ]