SMF Version: SMF 1.1 RC3
Estoy con un SMF 1.1 RC3 en modo local haciendo unas modificaciones, pero cuando miro los logs de errores aparecen 2 recurrentemente. Cada vez que se carga el foro o se hace cualquier cosa aparecen los 2. Lo que apaece es esto:
http://localhost/smf/index.php?topic=1.0
8: Undefined index: linktree
e:\appserv\www\smf\Sources\Load.php
648
http://localhost/smf/index.php?action=viewErrorLog;desc
2: array_unshift(): The first argument should be an array
e:\appserv\www\smf\Sources\Load.php
1345
En load.php las líneas 647 a 652 son
$context['linktree'] = array_merge(
$context['linktree'],
array(array(
'url' => $scripturl . '#' . $board_info['cat']['id'],
'name' => $board_info['cat']['name']
)),
Las líneas 1341 a 1354 son
// Set the top level linktree up.
array_unshift($context['linktree'], array(
'url' => &$scripturl,
'name' => &$context['forum_name']
));
$txt = array();
$simpleActions = array(
'findmember',
'helpadmin',
'printpage',
'quotefast',
'spellcheck',
);
La verdad no entiendo que está mal. Sólo aparecen esos errores pero en un rato se repiten cientos de veces :(