in file i18nblocks.module line ~79 is currently:
list($module, $gamma) = explode('_',$path);
if someone has a module name like nice_menus it grabs the module to be 'nice' and the gamma to be 'menus' here is a solution:
$pos = strrpos($path, "_");
$module = substr($path, 0, $pos);
$gamma = substr($path, $pos + 1);
hope this helps
Comments
Comment #1
mgiffordThanks.. I was banging my head against this problem this afternoon..
Mike
Comment #2
schittli commentedThanks a lot for this bugfix!!!, You saved me a lot of time.
Kind regards,
Thomas
Comment #3
juanfe commentedsee http://drupal.org/node/106831
-jfr