In Drupal 6, the correct way to overwrite a menu defined by another module is to implement hook_alter_menu().
This is not what the module does, when it define its own menu callbacks.
$items['blog'] = array('title' => t(''),
'page callback' => 'blog_addons_bloggers',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
Comments
Comment #1
Chajecki commentedThanks for useful suggestion. I tried to do minimal job to make a D6 version of this module from D5 one so obviously I missed such subtle difference and probably many others.
I do appreciate your feedback and I will implement a fix in a new release.
Comment #2
avpadernoI am closing this issue, which is for a not supported Drupal version.