PDA

View Full Version : postminchars Setting


Kirk Y
06-15-2006, 05:33 PM
This seems so simple, but does anyone know where the postminchars setting is used? I assumed it'd be in functions_newpost, but all my searches have turned up squat. TIA.

Alan @ CIT
06-17-2006, 07:09 AM
Searching for: postminchars
usernote.php(329): if (vbstrlen($vbulletin->GPC['message']) < $vbulletin->options['postminchars'] OR $vbulletin->GPC['message'] == '')
usernote.php(331): eval(standard_error(fetch_error('tooshort', $vbulletin->options['postminchars'])));
includes\class_dm_threadpost.php(210): $this->registry->options['postminchars'] = intval($this->registry->options['postminchars']);
includes\class_dm_threadpost.php(211): if ($this->registry->options['postminchars'] <= 0)
includes\class_dm_threadpost.php(213): $this->registry->options['postminchars'] = 1;
includes\class_dm_threadpost.php(215): if (vbstrlen(strip_bbcode($pagetext, $this->registry->options['ignorequotechars'])) < $this->registry->options['postminchars'])
includes\class_dm_threadpost.php(217): $this->error('tooshort', $this->registry->options['postminchars']);
Found 7 occurrence(s) in 2 file(s)


:)

Thanks,
Alan.

Kirk Y
06-20-2006, 01:42 PM
He he... thanks Alan. What search program are you using? I tried using WildEdit, but it only comes in an evaluation version which won't search for files larger than 9kb, which eliminates a lot of the includes dir files. But thanks anyway!

Alan @ CIT
06-20-2006, 01:55 PM
I use Textpad (www.textpad.com) - fantastic for finding things in files :)

Thanks,
Alan.