Quote:
Originally Posted by reismarktq2
1. What's changed between this and 2.5?
|
* Fixed bug in which GZIP disabled would cause errors. I have forcibly enabled GZIP to circumvent the bug.
Quote:
Originally Posted by reismarktq2
2. I have some plug-ins on my board that aren't associated with a product. In the manager, these plug-ins are listed before the products. I'd like them to be listed AFTER the products. How can I change this?
|
Take
PHP Code:
if (!empty($vbplugin))
{
foreach($vbplugin as $plugin)
{
if (empty($plugin['devkey']))
{
$plugin['devkey'] = 'N/A';
}
if ($plugin['active'] == 0)
{
$class = 'col-c';
$value2 = 'disabled';
$value = 'enabled';
}
else
{
$class = 'col-g';
$value2 = 'enabled';
$value = 'enabled';
}
if ($plugin['flag'] == 1)
{
$class = 'col-i';
$flag = 'enabled';
}
else
{
$flag = 'disabled';
}
echo "\t<option class=\"$class\" value=\"~\" product=\"vbulletin\" flag=\"$flag\" i=\"$plugin[executionorder];$plugin[hookname];$plugin[devkey]\" pluginid=\"$plugin[pluginid]\" productactive=\"$value\" pluginactive=\"$value2\"$selected>$plugin[title]</option>\n";
vbflush();
}
}
and place
before
PHP Code:
echo "</select>\n";
*** Untested, but should work. It won't break anything tho (I hope XD) ***