advanced_help.module line 273
list($parent, $parent_module) = explode($info['parent'], '%');
should be
list($parent_module, $parent) = explode('%', $info['parent']);
advanced_help.module line 273
list($parent, $parent_module) = explode($info['parent'], '%');
should be
list($parent_module, $parent) = explode('%', $info['parent']);
Comments
Comment #1
karens commentedThere's an actual patch for this at #307787: Let topics have topic from other module as parent.