I'm a little confused in the directions.
Still in editpost.php, look for: [vBulletin 2.2.6 and up ONLY!]
--------------------------------------------------------------------------------
if (phpversion() < '4.0.3') {
$enctype = 'enctype="multipart/form-data"';
} else if (ini_get('file_uploads')) {
$enctype = 'enctype="multipart/form-data"';
} else {
--------------------------------------------------------------------------------
Move this block a few lines up, just after this line:
--------------------------------------------------------------------------------
$enctype = '';
Am I supposed to remove the text above " $enctype = ''; " and then put it back in below it?
|