v1.2 released:
v1.2 fixes a bug in the standalone verions of this modification. $textareacols is now called correctly.
If you are using my version with all options added (found in standalone.txt) you need to upgrade.
Upgrade instructions:
In the phpinclude template replace this:
PHP Code:
if (strpos($_SERVER['PHP_SELF'], 'showthread.php') != false)
{
$smilies = getclickysmilies();
$maxattachsize = getmaxattachsize ();
if ($bbuserinfo['emailnotification']) {
$emailoptionchecked = 'checked';
} else {
$emailoptionchecked = '';
}
}
With this:
PHP Code:
if (strpos($_SERVER['PHP_SELF'], 'showthread.php') != false)
{
$smilies = getclickysmilies();
$maxattachsize = getmaxattachsize ();
$textareacols = gettextareawidth();
if ($bbuserinfo['emailnotification']) {
$emailoptionchecked = 'checked';
} else {
$emailoptionchecked = '';
}
}