Fix (2) coding errors!
1. Array to String error for bbcode SIZE tag.
2. Missing dot operator for smilies path.
NOTES:
1. If I have installed this on your forum or fixed a install then you
do not need to do this!
2. Darmak or anyone else that I gave MySQL version 3 or 4 files to,
do not need these edits!
Everyone else should do this!
Open './includes/functions_signature.php'
FIND THIS
Code:
$errors[] = construct_phrase ( $vbphrase['sig_editor_size_bbc'], $in[$i], $code['size'][0], $code['size'][1] );
REPLACE WITH
Code:
$errors[] = construct_phrase ( $vbphrase['sig_editor_size_bbc'], $in[1][$i], $code['size'][0], $code['size'][1] );
close and save './includes/functions_signature.php'
Open './includes/adminfunctions_signature.php'
FIND THIS
Code:
$path = ( substr ( $path, -1 ) != '/' ? '/' : '' );
REPLACE WITH
Code:
$path .= ( substr ( $path, -1 ) != '/' ? '/' : '' );
close and save './includes/adminfunctions_signature.php'
Done with error edits!
Sonia