The MyBB Humanization Project
#60
(2012-07-24, 02:45 AM)brad-t Wrote: Nice. One problem with using the Preview button this way is if you hit "Full Editor" without entering anything, you'll get an error message. Not sure what to do about that.

That's fairly easy to fix. Open the ./inc/datahandlers/post.php file in a text editor.

Find:

// Do we even have a message at all?
if(my_strlen($post['message']) == 0)
{
	$this->set_error("missing_message");
	return false;
}

// If this board has a maximum message length check if we're over it. Use strlen because SQL limits are in bytes
else if(strlen($post['message']) > $mybb->settings['maxmessagelength'] && $mybb->settings['maxmessagelength'] > 0 && !is_moderator($post['fid'], "", $post['uid']))
{
	$this->set_error("message_too_long", array($mybb->settings['maxmessagelength'], strlen($post['message'])));
	return false;
}

Replace with:

// If this board has a maximum message length check if we're over it. Use strlen because SQL limits are in bytes
if(strlen($post['message']) > $mybb->settings['maxmessagelength'] && $mybb->settings['maxmessagelength'] > 0 && !is_moderator($post['fid'], "", $post['uid']))
{
	$this->set_error("message_too_long", array($mybb->settings['maxmessagelength'], strlen($post['message'])));
	return false;
}
Reply


Messages In This Thread
The MyBB Humanization Project - by brad-t - 2012-07-09, 08:39 PM
RE: The MyBB Humanization Project - by Euan T - 2012-07-10, 04:58 AM
RE: The MyBB Humanization Project - by Yumi - 2012-07-10, 10:20 AM
RE: The MyBB Humanization Project - by BlackChaos - 2012-07-10, 10:50 AM
RE: The MyBB Humanization Project - by Tomm M - 2012-07-10, 10:55 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-10, 12:26 PM
RE: The MyBB Humanization Project - by faviouz - 2012-07-10, 02:54 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-10, 03:04 PM
RE: The MyBB Humanization Project - by BlackChaos - 2012-07-10, 04:46 PM
RE: The MyBB Humanization Project - by Maj - 2012-07-11, 04:30 AM
RE: The MyBB Humanization Project - by seeker - 2012-09-04, 12:20 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-10, 05:18 PM
RE: The MyBB Humanization Project - by wils172 - 2012-07-10, 05:39 PM
RE: The MyBB Humanization Project - by envira - 2012-07-10, 08:32 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-10, 08:33 PM
RE: The MyBB Humanization Project - by Solstice - 2012-07-11, 07:07 AM
RE: The MyBB Humanization Project - by Shannon - 2012-07-11, 07:44 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-11, 03:31 PM
RE: The MyBB Humanization Project - by Maj - 2012-07-12, 11:07 AM
RE: The MyBB Humanization Project - by BlackChaos - 2012-07-11, 03:45 PM
RE: The MyBB Humanization Project - by Solstice - 2012-07-11, 08:53 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-11, 10:11 PM
RE: The MyBB Humanization Project - by User 2877 - 2012-07-12, 06:05 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-14, 12:30 AM
RE: The MyBB Humanization Project - by Maj - 2012-07-14, 01:45 PM
RE: The MyBB Humanization Project - by Krytic - 2012-07-26, 06:32 AM
RE: The MyBB Humanization Project - by BlackChaos - 2012-07-14, 08:35 AM
RE: The MyBB Humanization Project - by Echo Off - 2012-07-14, 09:50 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-14, 03:35 PM
RE: The MyBB Humanization Project - by Scois0n - 2012-07-15, 02:28 PM
RE: The MyBB Humanization Project - by Scoutie44 - 2012-07-16, 11:58 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-17, 02:24 AM
RE: The MyBB Humanization Project - by Leefish - 2012-07-17, 02:28 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-17, 03:42 AM
RE: The MyBB Humanization Project - by Leefish - 2012-07-17, 04:09 AM
RE: The MyBB Humanization Project - by Eric - 2012-07-21, 03:12 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-21, 03:32 AM
RE: The MyBB Humanization Project - by faviouz - 2012-07-21, 01:13 PM
RE: The MyBB Humanization Project - by pavemen - 2012-07-21, 06:06 PM
RE: The MyBB Humanization Project - by smexy - 2012-07-21, 02:51 PM
RE: The MyBB Humanization Project - by Eric - 2012-07-21, 02:52 PM
RE: The MyBB Humanization Project - by Maj - 2012-07-21, 05:45 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-21, 09:35 PM
RE: The MyBB Humanization Project - by faviouz - 2012-07-21, 09:41 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-21, 09:45 PM
RE: The MyBB Humanization Project - by Tecca - 2012-07-22, 11:34 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-23, 04:06 AM
RE: The MyBB Humanization Project - by Tecca - 2012-07-23, 08:03 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-23, 01:31 PM
RE: The MyBB Humanization Project - by quecarallo - 2012-07-23, 08:22 PM
RE: The MyBB Humanization Project - by Tecca - 2012-07-23, 09:31 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-23, 10:50 PM
RE: The MyBB Humanization Project - by Tecca - 2012-07-24, 02:41 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-24, 02:45 AM
RE: The MyBB Humanization Project - by faviouz - 2012-07-25, 11:38 AM
RE: The MyBB Humanization Project - by Tecca - 2012-07-25, 11:59 AM
RE: The MyBB Humanization Project - by Tecca - 2012-07-24, 03:01 AM
RE: The MyBB Humanization Project - by Krytic - 2012-07-25, 07:01 AM
RE: The MyBB Humanization Project - by brad-t - 2012-07-25, 12:26 PM
RE: The MyBB Humanization Project - by faviouz - 2012-07-25, 03:05 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-25, 03:11 PM
RE: The MyBB Humanization Project - by faviouz - 2012-07-25, 03:19 PM
RE: The MyBB Humanization Project - by Tecca - 2012-07-25, 10:28 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-25, 04:00 PM
RE: The MyBB Humanization Project - by brad-t - 2012-07-26, 11:34 AM
RE: The MyBB Humanization Project - by Krytic - 2012-07-27, 05:43 AM
RE: The MyBB Humanization Project - by BlackChaos - 2012-08-01, 04:01 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-01, 04:08 PM
RE: The MyBB Humanization Project - by BlackChaos - 2012-08-01, 04:09 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-01, 04:10 PM
RE: The MyBB Humanization Project - by BlackChaos - 2012-08-01, 04:13 PM
RE: The MyBB Humanization Project - by Shell - 2012-08-07, 09:40 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-07, 10:15 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-08, 05:03 PM
RE: The MyBB Humanization Project - by Earl Grey - 2012-08-09, 12:49 PM
RE: The MyBB Humanization Project - by Maj - 2012-08-09, 01:31 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-09, 01:37 PM
RE: The MyBB Humanization Project - by Euan T - 2012-08-09, 01:51 PM
RE: The MyBB Humanization Project - by crazy4cs - 2012-08-09, 02:02 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-09, 02:04 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-09, 07:37 PM
RE: The MyBB Humanization Project - by faviouz - 2012-08-09, 07:38 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-09, 08:08 PM
RE: The MyBB Humanization Project - by Eric - 2012-08-09, 07:45 PM
RE: The MyBB Humanization Project - by Eric - 2012-08-09, 08:11 PM
RE: The MyBB Humanization Project - by faviouz - 2012-08-09, 08:11 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-09, 08:19 PM
RE: The MyBB Humanization Project - by StevenF50 - 2012-08-13, 03:43 PM
RE: The MyBB Humanization Project - by brad-t - 2012-08-25, 07:52 PM
RE: The MyBB Humanization Project - by Salih I - 2012-08-28, 08:41 AM
RE: The MyBB Humanization Project - by rya4 - 2012-08-30, 12:42 AM
RE: The MyBB Humanization Project - by brad-t - 2012-08-30, 01:01 AM
RE: The MyBB Humanization Project - by Tecca - 2012-08-30, 01:17 AM
RE: The MyBB Humanization Project - by brad-t - 2012-08-30, 01:22 AM
RE: The MyBB Humanization Project - by Salih I - 2012-08-30, 05:26 AM
RE: The MyBB Humanization Project - by Dark Byte - 2012-09-03, 07:28 AM
RE: The MyBB Humanization Project - by Leefish - 2012-09-04, 12:39 AM
RE: The MyBB Humanization Project - by Sector - 2012-09-04, 03:17 AM
RE: The MyBB Humanization Project - by brad-t - 2012-09-04, 04:06 AM
RE: The MyBB Humanization Project - by Sector - 2012-09-04, 04:56 AM
RE: The MyBB Humanization Project - by brad-t - 2012-09-04, 03:29 PM
RE: The MyBB Humanization Project - by Salih I - 2012-09-04, 05:21 AM
RE: The MyBB Humanization Project - by Wazzyl - 2012-09-04, 10:57 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-05, 02:39 AM
RE: The MyBB Humanization Project - by Trickshot - 2012-09-05, 03:35 AM
RE: The MyBB Humanization Project - by Leefish - 2012-09-05, 06:28 AM
RE: The MyBB Humanization Project - by Euan T - 2012-09-05, 11:48 AM
RE: The MyBB Humanization Project - by brad-t - 2012-09-05, 12:56 PM
RE: The MyBB Humanization Project - by Wazzyl - 2012-09-05, 05:19 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-05, 10:04 PM
RE: The MyBB Humanization Project - by Sector - 2012-09-15, 12:15 PM
RE: The MyBB Humanization Project - by faviouz - 2012-09-15, 12:29 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-17, 06:15 PM
RE: The MyBB Humanization Project - by Scois0n - 2012-09-20, 10:58 PM
RE: The MyBB Humanization Project - by Andrew B. - 2012-09-20, 11:48 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-21, 02:06 PM
RE: The MyBB Humanization Project - by Andrew B. - 2012-09-22, 08:00 AM
RE: The MyBB Humanization Project - by User 2877 - 2012-09-23, 10:40 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-23, 10:44 PM
RE: The MyBB Humanization Project - by 7uyk - 2012-09-29, 02:24 PM
RE: The MyBB Humanization Project - by brad-t - 2012-09-29, 03:25 PM
RE: The MyBB Humanization Project - by Xbat - 2012-10-02, 07:56 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-02, 08:10 PM
RE: The MyBB Humanization Project - by Tecca - 2012-10-02, 08:11 PM
RE: The MyBB Humanization Project - by Xypher - 2012-10-03, 04:13 AM
RE: The MyBB Humanization Project - by brad-t - 2012-10-03, 12:55 PM
RE: The MyBB Humanization Project - by Euan T - 2012-10-03, 02:36 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-03, 05:53 PM
RE: The MyBB Humanization Project - by Euan T - 2012-10-03, 05:56 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-05, 11:41 PM
RE: The MyBB Humanization Project - by Breixo - 2013-04-06, 01:26 PM
RE: The MyBB Humanization Project - by Nelson Noa - 2012-10-10, 01:02 AM
RE: The MyBB Humanization Project - by brad-t - 2012-10-10, 02:35 AM
RE: The MyBB Humanization Project - by Krytic - 2012-10-12, 10:30 AM
RE: The MyBB Humanization Project - by brad-t - 2012-10-17, 01:56 PM
RE: The MyBB Humanization Project - by Tecca - 2012-10-17, 09:45 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-18, 07:04 PM
RE: The MyBB Humanization Project - by Krytic - 2012-10-20, 08:06 AM
RE: The MyBB Humanization Project - by Niggidea - 2012-10-19, 10:15 PM
RE: The MyBB Humanization Project - by Tecca - 2012-10-19, 10:19 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-19, 10:52 PM
RE: The MyBB Humanization Project - by brad-t - 2012-10-20, 08:33 PM
RE: The MyBB Humanization Project - by Krytic - 2012-11-02, 09:30 AM
RE: The MyBB Humanization Project - by Tecca - 2012-11-06, 11:06 PM
RE: The MyBB Humanization Project - by brad-t - 2012-11-06, 06:00 PM
RE: The MyBB Humanization Project - by Wazzyl - 2012-11-07, 07:54 AM
RE: The MyBB Humanization Project - by brad-t - 2012-11-07, 02:38 PM
RE: The MyBB Humanization Project - by Shade - 2012-11-09, 10:18 PM
RE: The MyBB Humanization Project - by Tecca - 2012-11-09, 10:45 PM
RE: The MyBB Humanization Project - by Shade - 2012-11-11, 10:43 AM
RE: The MyBB Humanization Project - by brad-t - 2012-11-12, 01:16 AM
RE: The MyBB Humanization Project - by ohhaithar - 2012-11-14, 11:16 PM
RE: The MyBB Humanization Project - by NNT_ - 2012-11-17, 12:30 PM
RE: The MyBB Humanization Project - by Tomm M - 2012-11-19, 09:36 AM
RE: The MyBB Humanization Project - by brad-t - 2012-11-20, 03:49 PM
RE: The MyBB Humanization Project - by NNT_ - 2012-11-25, 05:44 AM
RE: The MyBB Humanization Project - by brad-t - 2012-11-25, 06:05 AM
RE: The MyBB Humanization Project - by Leefish - 2012-12-04, 08:42 AM
RE: The MyBB Humanization Project - by brad-t - 2012-12-04, 12:20 PM
RE: The MyBB Humanization Project - by Shade - 2012-12-04, 02:13 PM
RE: The MyBB Humanization Project - by brad-t - 2012-12-04, 03:21 PM
RE: The MyBB Humanization Project - by Shade - 2012-12-04, 03:47 PM
RE: The MyBB Humanization Project - by brad-t - 2012-12-04, 04:38 PM
RE: The MyBB Humanization Project - by Berlo - 2012-12-10, 03:57 AM
RE: The MyBB Humanization Project - by brad-t - 2012-12-10, 04:53 AM
RE: The MyBB Humanization Project - by Berlo - 2012-12-10, 05:04 AM
RE: The MyBB Humanization Project - by brad-t - 2012-12-10, 05:12 AM
RE: The MyBB Humanization Project - by Crayo - 2012-12-13, 06:57 PM
RE: The MyBB Humanization Project - by burnz3r0 - 2012-12-10, 09:24 AM
RE: The MyBB Humanization Project - by brad-t - 2012-12-13, 07:47 PM
RE: The MyBB Humanization Project - by brad-t - 2012-12-17, 09:29 PM
RE: The MyBB Humanization Project - by Leefish - 2012-12-17, 09:53 PM
RE: The MyBB Humanization Project - by brad-t - 2012-12-17, 09:56 PM
RE: The MyBB Humanization Project - by Omar G. - 2012-12-17, 10:12 PM
RE: The MyBB Humanization Project - by Crayo - 2012-12-18, 08:20 PM
RE: The MyBB Humanization Project - by Leefish - 2012-12-18, 09:35 PM
RE: The MyBB Humanization Project - by brad-t - 2012-12-18, 09:37 PM
RE: The MyBB Humanization Project - by Leefish - 2012-12-18, 09:55 PM
RE: The MyBB Humanization Project - by Crayo - 2013-01-01, 11:40 PM
RE: The MyBB Humanization Project - by alv4 - 2013-02-04, 12:00 AM
RE: The MyBB Humanization Project - by brad-t - 2013-02-04, 03:20 AM
RE: The MyBB Humanization Project - by Euan T - 2013-02-04, 01:42 PM
RE: The MyBB Humanization Project - by brad-t - 2013-02-04, 01:56 PM
RE: The MyBB Humanization Project - by Euan T - 2013-02-04, 02:20 PM
RE: The MyBB Humanization Project - by brad-t - 2013-02-04, 02:33 PM
RE: The MyBB Humanization Project - by alv4 - 2013-02-10, 04:44 PM
RE: The MyBB Humanization Project - by Maj - 2013-02-12, 03:18 PM
RE: The MyBB Humanization Project - by brad-t - 2013-02-12, 03:48 PM
RE: The MyBB Humanization Project - by Maj - 2013-02-12, 05:58 PM
RE: The MyBB Humanization Project - by Elitis - 2013-03-15, 06:50 PM
RE: The MyBB Humanization Project - by brad-t - 2013-03-15, 07:29 PM
RE: The MyBB Humanization Project - by Johnny S - 2013-03-15, 07:05 PM
RE: The MyBB Humanization Project - by brad-t - 2013-04-06, 07:55 PM
RE: The MyBB Humanization Project - by Breixo - 2013-04-12, 10:03 PM
RE: The MyBB Humanization Project - by Tecca - 2013-04-16, 03:17 AM
RE: The MyBB Humanization Project - by Eric - 2013-04-16, 03:37 AM
RE: The MyBB Humanization Project - by brad-t - 2013-04-16, 03:44 AM
RE: The MyBB Humanization Project - by Krytic - 2013-04-16, 03:29 AM
RE: The MyBB Humanization Project - by Tecca - 2013-04-16, 11:38 PM
RE: The MyBB Humanization Project - by Narcissus - 2013-04-19, 08:43 AM
RE: The MyBB Humanization Project - by brad-t - 2013-04-19, 02:12 PM
RE: The MyBB Humanization Project - by Narcissus - 2013-04-20, 08:53 PM
RE: The MyBB Humanization Project - by .m. - 2013-04-19, 12:00 PM
RE: The MyBB Humanization Project - by Narcissus - 2013-04-19, 12:39 PM
RE: The MyBB Humanization Project - by Narcissus - 2013-05-04, 02:31 PM
RE: The MyBB Humanization Project - by brad-t - 2013-05-06, 01:36 PM
RE: The MyBB Humanization Project - by SDRiding - 2013-05-29, 08:46 AM
RE: The MyBB Humanization Project - by Jessie S. - 2013-05-29, 06:26 PM
RE: The MyBB Humanization Project - by brad-t - 2013-05-29, 06:31 PM
RE: The MyBB Humanization Project - by Euan T - 2013-05-29, 07:12 PM
RE: The MyBB Humanization Project - by brad-t - 2013-05-29, 07:47 PM
RE: The MyBB Humanization Project - by Geret - 2013-05-30, 12:41 AM
RE: The MyBB Humanization Project - by brad-t - 2013-05-30, 12:57 AM
RE: The MyBB Humanization Project - by Jessie S. - 2013-05-30, 02:29 AM
RE: The MyBB Humanization Project - by brad-t - 2013-05-30, 02:38 AM
RE: The MyBB Humanization Project - by Maj - 2013-05-31, 09:56 PM
RE: The MyBB Humanization Project - by Tecca - 2013-05-31, 10:20 PM
RE: The MyBB Humanization Project - by brad-t - 2013-05-31, 11:25 PM
RE: The MyBB Humanization Project - by brad-t - 2013-06-02, 08:18 PM
RE: The MyBB Humanization Project - by Krytic - 2013-06-02, 11:06 PM
RE: The MyBB Humanization Project - by Majes - 2013-07-03, 01:33 AM
RE: The MyBB Humanization Project - by HakanYN - 2013-08-19, 10:59 AM
RE: The MyBB Humanization Project - by Glandus - 2014-02-10, 11:27 PM
RE: The MyBB Humanization Project - by brad-t - 2014-02-19, 07:58 PM
RE: The MyBB Humanization Project - by Glandus - 2014-02-21, 08:19 PM
RE: The MyBB Humanization Project - by clayxcol - 2014-03-01, 05:06 AM
RE: The MyBB Humanization Project - by givenality - 2014-03-17, 10:12 PM
RE: The MyBB Humanization Project - by brad-t - 2014-03-19, 03:47 AM
RE: The MyBB Humanization Project - by clayxcol - 2014-03-23, 03:58 AM
RE: The MyBB Humanization Project - by ArchPrime - 2014-04-15, 01:00 AM
RE: The MyBB Humanization Project - by Leefish - 2014-04-15, 01:03 AM
RE: The MyBB Humanization Project - by ArchPrime - 2014-04-15, 01:19 AM
RE: The MyBB Humanization Project - by Leefish - 2014-04-15, 01:41 AM
RE: The MyBB Humanization Project - by ArchPrime - 2014-04-15, 02:06 AM
RE: The MyBB Humanization Project - by brad-t - 2014-04-15, 02:23 AM
RE: The MyBB Humanization Project - by ArchPrime - 2014-04-15, 03:11 AM
RE: The MyBB Humanization Project - by s3_gunzel - 2014-04-21, 09:41 PM
RE: The MyBB Humanization Project - by brad-t - 2014-04-22, 03:21 AM
RE: The MyBB Humanization Project - by s3_gunzel - 2014-04-22, 04:10 AM
RE: The MyBB Humanization Project - by brad-t - 2014-04-22, 01:20 PM
RE: The MyBB Humanization Project - by riser - 2014-05-07, 12:13 PM
RE: The MyBB Humanization Project - by brad-t - 2014-05-07, 03:40 PM
RE: The MyBB Humanization Project - by Blinkii - 2014-05-23, 09:51 PM
RE: The MyBB Humanization Project - by Hamster24 - 2014-10-11, 06:56 PM
RE: The MyBB Humanization Project - by brad-t - 2014-10-11, 08:39 PM
RE: The MyBB Humanization Project - by Wazzyl - 2014-11-12, 08:52 AM
RE: The MyBB Humanization Project - by Arka - 2014-11-29, 09:44 AM
RE: The MyBB Humanization Project - by Euan T - 2014-11-29, 01:20 PM
RE: The MyBB Humanization Project - by Arka - 2014-11-29, 03:06 PM
RE: The MyBB Humanization Project - by Euan T - 2014-11-29, 03:28 PM
RE: The MyBB Humanization Project - by andrewjs18 - 2014-11-30, 12:36 AM
RE: The MyBB Humanization Project - by Euan T - 2014-11-30, 10:30 AM
RE: The MyBB Humanization Project - by Arka - 2014-11-29, 12:20 PM
RE: The MyBB Humanization Project - by Omar G. - 2014-11-30, 08:10 PM
RE: The MyBB Humanization Project - by Arka - 2014-11-30, 08:14 PM
RE: The MyBB Humanization Project - by Euan T - 2014-11-30, 08:24 PM
RE: The MyBB Humanization Project - by combus - 2014-12-03, 04:44 PM
RE: The MyBB Humanization Project - by sn4g - 2014-12-08, 05:25 PM
RE: The MyBB Humanization Project - by Harry K. - 2014-12-10, 03:09 PM
RE: The MyBB Humanization Project - by brad-t - 2014-12-15, 10:15 PM
RE: The MyBB Humanization Project - by BitLiberal - 2015-01-06, 01:08 PM
RE: The MyBB Humanization Project - by brad-t - 2015-01-06, 04:44 PM
RE: The MyBB Humanization Project - by Leefish - 2015-01-06, 06:08 PM
RE: The MyBB Humanization Project - by Euan T - 2015-01-07, 02:40 PM
RE: The MyBB Humanization Project - by Kylin - 2015-03-15, 03:34 PM
RE: The MyBB Humanization Project - by Leefish - 2015-03-15, 04:43 PM
RE: The MyBB Humanization Project - by brad-t - 2015-03-18, 02:20 PM
RE: The MyBB Humanization Project - by andrewjs18 - 2015-05-10, 09:57 PM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-02, 02:10 AM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-02, 07:50 AM
RE: The MyBB Humanization Project - by Leefish - 2015-07-02, 10:46 AM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-02, 05:51 PM
RE: The MyBB Humanization Project - by andrewjs18 - 2015-07-02, 08:10 PM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-02, 09:07 PM
RE: The MyBB Humanization Project - by andrewjs18 - 2015-07-02, 09:22 PM
RE: The MyBB Humanization Project - by Phantomer - 2015-07-02, 07:25 PM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-02, 07:48 PM
RE: The MyBB Humanization Project - by Cookie123 - 2015-07-03, 12:37 AM
RE: The MyBB Humanization Project - by Marc A - 2015-07-03, 07:29 PM
RE: The MyBB Humanization Project - by fachrils - 2015-11-05, 07:22 PM
RE: The MyBB Humanization Project - by Marc A - 2015-11-21, 03:28 PM
RE: The MyBB Humanization Project - by roy - 2015-11-20, 12:10 PM
RE: The MyBB Humanization Project - by niere8 - 2015-11-21, 01:36 AM
RE: The MyBB Humanization Project - by Leefish - 2015-11-22, 02:53 AM
RE: The MyBB Humanization Project - by brad-t - 2015-12-08, 07:57 PM
RE: The MyBB Humanization Project - by Eric - 2016-05-21, 04:34 PM
RE: The MyBB Humanization Project - by Wazzyl - 2016-05-22, 09:06 AM
RE: The MyBB Humanization Project - by katos - 2016-07-16, 06:16 PM
RE: The MyBB Humanization Project - by brad-t - 2016-07-16, 08:29 PM
RE: The MyBB Humanization Project - by katos - 2016-07-16, 09:48 PM
RE: The MyBB Humanization Project - by brad-t - 2016-07-16, 09:52 PM
RE: The MyBB Humanization Project - by MikeInToshx - 2016-08-21, 12:06 AM
RE: The MyBB Humanization Project - by eNvy - 2016-08-21, 12:56 AM
RE: The MyBB Humanization Project - by MikeInToshx - 2016-08-21, 01:04 AM
RE: The MyBB Humanization Project - by eNvy - 2016-08-21, 01:08 AM
RE: The MyBB Humanization Project - by brad-t - 2016-08-21, 03:45 AM

Forum Jump:


Users browsing this thread: 96 Guest(s)