Quote:
Originally Posted by sv1cec
Terrific,
Just change your instruction in global.php, it should say:
PHP Code:
if (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'forumdisplay')
{
$show['inlinemod'] = true;
}
else
{
$show['inlinemod'] = false;
}
you use forumdisplay.php, while the script name is forumdisplay.
Rgds
|
Thanks sv1ec, I thought I had changed the upgrade XML file, guess not. I'll do so and then rebuild the HTML instructions

.
Raven: I guess that's a bug in my ZIP packager then for not removing .DS_Store. I'll get rid of it when I repackage the zip tonight. Glad you like the installer

. I love being able to do Apple/Control + A to select all the text, too. It's so much easier

.
WebMasterAJ: If you are upgrading, make sure that in global.php the following:
PHP Code:
// #############################################################################
// are we on a script that uses inline moderation
if (THIS_SCRIPT == 'showthread.php' OR THIS_SCRIPT == 'forumdisplay.php')
{
$show['inlinemod'] = true;
}
else
{
$show['inlinemod'] = false;
}
Is actually:
PHP Code:
// #############################################################################
// are we on a script that uses inline moderation
if (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'forumdisplay')
{
$show['inlinemod'] = true;
}
else
{
$show['inlinemod'] = false;
}