Sorry about that. I was still thinkng about the private attachments problem. (DOHHH!!!)
Now, for the last part. You said to make a change in the private.php. What do I need to do to that do make it handle the BMPs the same way as the regular attachments does and how do I get the commas in there?
Quote:
Originally posted by FireFly
In newreply.php and newthread.php replace this:
Code:
$maxattachsize_temp = getmaxattachsize();
With this:
Code:
$maxattachsize_temp = getmaxattachsize();
$attachextensions = str_replace(' ', ', ', $attachextensions);
|