MyBB Community Forums

Full Version: Release: Report system like in vBulletin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7
Hello there!
Yes it works with 1.4.9.
The link didn't show into ACP.
i like it its cool Smile
Nice. I like this plugin a lot, one of my main plugin.
plugin works perfectly, thanks! Big Grin
(2009-10-07, 06:17 PM)Skiilz Wrote: [ -> ]The link didn't show into ACP.

Can you explain a little bit more please? What link? Are you sure you installed it correctly?
Is there a way to make this for when a moderator or SMod or Admin gives out a warning?
(2009-12-06, 02:22 AM)WhatHacks.net Wrote: [ -> ]Is there a way to make this for when a moderator or SMod or Admin gives out a warning?

Personally I never thought about that, but why do you need such a feature? You can easily check mod logs to see who gave whom a warning.
Great plugin! Thanks! Wink
How do I change the Thread/Post Icon on the plugin?
I saw this code below but I don't know how to add the icon I want it to show.
		// Building the report thread:
		$reportedthread = array(
		   "fid" => $mybb->settings['reporttoforum_forum'],
		   "subject" => "Reported post by ".$mybb->user['username'],
		   "icon" => "2",
		   "uid" => $mybb->user['uid'],
		   "username" => $mybb->user['username'],
		   "dateline" => TIME_NOW,
		   "lastpost" => TIME_NOW,
		   "lastposter" =>  $mybb->user['username'],
		   "lastposteruid" => $mybb->user['uid'],
		   "views" => 1,
		   "visible" => "1"
		 );    
		    
		 $tid = $db->insert_id($db->insert_query("threads", $reportedthread));
		    
		 // Building the report post:
		 $reportedpost = array(
		   "fid" => $mybb->settings['reporttoforum_forum'],
		   "subject" => "Reported post by ".$mybb->user['username'],
		   "icon" => "2",
		   "uid" => $mybb->user['uid'],
		   "username" => $mybb->user['username'],
		   "dateline" => TIME_NOW,
		   "message" => $message,
		   "ipaddress" => 1,
		   "longipaddress" => 1,
		   "visible" => 1,
		   "posthash" => $posthash
		  );

		   "icon" => "2",
Pages: 1 2 3 4 5 6 7