MyBB Community Forums
[For 1.6] Release: Report system like in vBulletin - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: [For 1.6] Release: Report system like in vBulletin (/thread-49436.html)

Pages: 1 2 3 4 5 6 7


RE: Release: Report system like in vBulletin - John_S - 2009-10-03

Hello there!
Yes it works with 1.4.9.


RE: Release: Report system like in vBulletin - Skiilz - 2009-10-07

The link didn't show into ACP.


RE: Release: Report system like in vBulletin - jero2006 - 2009-10-09

i like it its cool Smile


RE: Release: Report system like in vBulletin - nyunyu - 2009-10-13

Nice. I like this plugin a lot, one of my main plugin.


RE: Release: Report system like in vBulletin - habs - 2009-10-23

plugin works perfectly, thanks! Big Grin


RE: Release: Report system like in vBulletin - John_S - 2009-10-24

(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?


RE: Release: Report system like in vBulletin - WhatHacks.net - 2009-12-06

Is there a way to make this for when a moderator or SMod or Admin gives out a warning?


RE: Release: Report system like in vBulletin - John_S - 2009-12-06

(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.


RE: Release: Report system like in vBulletin - Alan S. - 2009-12-06

Great plugin! Thanks! Wink


RE: Release: Report system like in vBulletin - Skiilz - 2010-01-08

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",