hi, i followed the instructions in the error in mod installation article and went ahead and installed the mod. i then went into my ftp and added the recomended code that my package installer told me to add. however, i cannot see the todo list tab in my forum nor can i find it anywhere for that matter. any help? here is a screen shot of the code i added (the todo array)
here is the code that was recommended to be changed in the install manager:
find:
'mlist' => array(
'title' => $txt['members_title'],
replace:
'todo' => array(
'title' => function_exists('get_today_todos') ? get_today_todos() : '',
'href' => $scripturl . '?action=todo',
'show' => $context['allow_view_todolist'],
'sub_buttons' => array(
'add' => array(
'title' => $txt['to_do_add'],
'href' => $scripturl . '?action=todo;sa=add',
'show' => allowedTo('add_new_todo'),
'is_last' => true,
),
),
),
'mlist' => array(
'title' => $txt['members_title'],