i think i may have found a small miscommunication in the install instructions.
there's actually two instances of
Code:
construct_nav_option($vbphrase['scheduled_task_log'], 'cronlog.php?do=choose', '<br />');
in the admincp/index.php (at least there is in 3.0.5). here's what the block looks like
Code:
if (can_administer('canadmincron'))
{
construct_nav_option($vbphrase['scheduled_task_manager'], 'cronadmin.php?do=modify', '|');
construct_nav_option($vbphrase['add_new_scheduled_task'], 'cronadmin.php?do=edit', '<br />' );
construct_nav_option($vbphrase['scheduled_task_log'], 'cronlog.php?do=choose', '<br />');
construct_nav_group($vbphrase['scheduled_tasks']);
}
// ***
construct_nav_option($vbphrase['statistics'], 'stats.php?do=index', '<br />');
construct_nav_option($vbphrase['control_panel_log'], 'adminlog.php?do=choose', '|');
construct_nav_option($vbphrase['moderator_log'], 'modlog.php?do=choose', '<br />');
construct_nav_option($vbphrase['scheduled_task_log'], 'cronlog.php?do=choose', '<br />');
if you add
Code:
construct_nav_option('Modification Log', 'modslog.php', '<br />');
after the first instance instead of the second, the link to the new page wont be added.
i only discovered this becasue i added the line after the first instance and couldn't figure out why i wasn't getting my link. it's all good now that i moved it to after the second instance.
great mod. thanks!