hello all... i think i'm not the only one who reports this problem.

in every forum topic there is this error code:

warning: include_once(themes/deco/forum-topic-navigation) [function.include-once]: failed to open stream: No such file or directory in U:\xampp\htdocs\includes\theme.inc on line 587.
warning: include_once() [function.include]: Failed opening 'themes/deco/forum-topic-navigation' for inclusion (include_path='.;\xampp\php\pear\') in U:\xampp\htdocs\includes\theme.inc on line 587.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'deco_forum_topic_navigation' was given in U:\xampp\htdocs\includes\theme.inc on line 59

How to solve this?
Do you plan a next release/fix?

thanks.

best regards

Comments

johnmullin2003’s picture

all problems solved. open the deco/template.php and edit the lines in this way:

/**
 * Implementation of hook_theme()
 */
function deco_theme() {
  return array(
    'deco_forum_topic_navigation' => array(
      'file' => 'forum-topic-navigation.tpl.php',
      'arguments' => array('node' => NULL),
    )
  );
}

.

then save, replace, disable theme and then re-enable theme to fix all.

the forum signature is still to be fixed.

shmiga’s picture

change 'file' => 'forum-topic-navigation.tpl',
to 'file' => 'forum-topic-navigation.tpl.php',
in template.php line 129

Fuzzytek’s picture

Thanks for the notes - as much as I hate patching manually it did the trick. Waiting for a revision to fix this.

add1sun’s picture

Status: Active » Fixed

fixed in dev

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.