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

Chajecki’s picture

Assigned: Unassigned » Chajecki

Thanks 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.

avpaderno’s picture

Version: 6.x-1.1 » 6.x-1.x-dev
Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, which is for a not supported Drupal version.