In the page admin/mlm, the link to the "backends configuration page" is hardcoded with the assumption that the instance of Drupal has Clean URLs enabled. This assumption wasn't true for me, and presumably isn't true for others. The easy quick fix was to replace line 83 of mlm.inc

echo theme('page', t('You must visit the <a href="admin/mlm/backends">backends configuration page</a> and enable one or more backends before you can create a 
list'));

with

echo theme('page', t('You must visit the '.l('backends configuration page','admin/mlm/backends').' and enable one or more backends before you can create a 
list'));

It would be great if you could make this small change in the posted version.

Thanks for the module!
Don

Comments

allie micka’s picture

Silly module author.

Fixed now - thanks!

allie micka’s picture

Status: Active » Closed (fixed)

Which means, the issue is closed ;)