Report Notification mod?

death180

Seasoned Veteran
Joined
Jul 3, 2009
Messages
4,338
Reaction score
0
FP$
1,767
Is it a mod that puts up a notification when a post is reported?

phpBB3 btw.
 
cool, can you change the color of the notification? To like red or something a bit more attractive?
 
In language/en/mods/moderator_needed.php find the following:

Code:
$lang = array_merge($lang, array(
    'MODERATOR_NEEDED_REPORTED_POST'	=> '<strong style="color:#FF0000;">%d</strong> Post is reported',
	'MODERATOR_NEEDED_REPORTED_POSTS'	=> '<strong style="color:#FF0000;">%d</strong> Posts are reported',
    'MODERATOR_NEEDED_APPROVE_POST'		=> '<strong style="color:#FF0000;">%d</strong> Post needs approval',
	'MODERATOR_NEEDED_APPROVE_POSTS'	=> '<strong style="color:#FF0000;">%d</strong> Posts need approval',
	'MODERATOR_NEEDED_APPROVE_TOPIC'    => '<strong style="color:#FF0000;">%d</strong> Topic needs approval',
	'MODERATOR_NEEDED_APPROVE_TOPICS'   => '<strong style="color:#FF0000;">%d</strong> Topics need approval',
	'MODERATOR_NEEDED_REPORTED_PM'    	=> '<strong style="color:#FF0000;">%d</strong> PM is reported',
	'MODERATOR_NEEDED_REPORTED_PMS'   	=> '<strong style="color:#FF0000;">%d</strong> PMs are reported',
and replace with
Code:
$lang = array_merge($lang, array(
    'MODERATOR_NEEDED_REPORTED_POST'	=> '<strong style="color:#FF0000;">%d Post is reported</strong>',
	'MODERATOR_NEEDED_REPORTED_POSTS'	=> '<strong style="color:#FF0000;">%d Posts are reported</strong>',
    'MODERATOR_NEEDED_APPROVE_POST'		=> '<strong style="color:#FF0000;">%d Post needs approval</strong>',
	'MODERATOR_NEEDED_APPROVE_POSTS'	=> '<strong style="color:#FF0000;">%d Posts need approval</strong>',
	'MODERATOR_NEEDED_APPROVE_TOPIC'    => '<strong style="color:#FF0000;">%d Topic needs approval',
	'MODERATOR_NEEDED_APPROVE_TOPICS'   => '<strong style="color:#FF0000;">%d Topics need approval</strong>',
	'MODERATOR_NEEDED_REPORTED_PM'    	=> '<strong style="color:#FF0000;">%d PM is reported</strong>',
	'MODERATOR_NEEDED_REPORTED_PMS'   	=> '<strong style="color:#FF0000;">%d PMs are reported</strong>',

I haven't tested it but it should work.
 
Back
Top Bottom