Topic: Censorship on Index under "Last post"
I've found one problem. On the my forum censorship works on everything except for the index showing the "Last post". I couldn't find this problem when searching. Can someone help me censor "Last post"?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Censorship on Index under "Last post"
I've found one problem. On the my forum censorship works on everything except for the index showing the "Last post". I couldn't find this problem when searching. Can someone help me censor "Last post"?
I take it you are using the PunRes mod:
Replace
// Display the last topic
$idm = $cur_forum['subject'];
With
// Display the last topic
if ($pun_config['o_censoring'] == '1')
{
$idm = censor_words($cur_forum['subject']);
} else
$idm = $cur_forum['subject'];
Appears to be a mod problem rather than a bug in core PunBB, moved to modifications.
I'm using Punbbfrontpage. I found a similar line in the functions script, but it gave errors...so I put it back. I'm going to look at it a little harder tonight and see if I can't figure it out. It uses $cur_posts['subject']; I'll put what I find tonight. Thanks
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Censorship on Index under "Last post"
Powered by PunBB, supported by Informer Technologies, Inc.