Quote:
Originally Posted by kurtbarker
hey mate, in plugin.php, i've got
Code:
if ($_REQUEST['do'] != 'download' AND $_REQUEST['do'] != 'productexport')
{
print_cp_header($vbphrase['plugin_system']);
}
should I replace it completely so I end up with
Code:
if ($_REQUEST['do'] != 'updateactive' AND $_REQUEST['do'] != 'update')
{
print_cp_header($vbphrase['plugin_system']);
}
or should I only replace the line that is in the readme so I end up with
Code:
if ($_REQUEST['do'] != 'download' AND $_REQUEST['do'] != 'productexport')
{
if ($_REQUEST['do'] != 'updateactive' AND $_REQUEST['do'] != 'update')
{
print_cp_header($vbphrase['plugin_system']);
}
}
coz that last one doesn't look right, but it's what the instructions say, so I just want to confirm
|
I would say the last one is correct. Tony usually doesn't miss something like that.