Index: advanced_help.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/advanced_help/advanced_help.module,v retrieving revision 1.32 diff -u -r1.32 advanced_help.module --- advanced_help.module 17 Oct 2008 21:49:42 -0000 1.32 +++ advanced_help.module 22 Oct 2008 13:18:27 -0000 @@ -270,7 +270,7 @@ $parent = ''; } else if (strpos($info['parent'], '%')) { - list($parent, $parent_module) = explode($info['parent'], '%'); + list($parent_module, $parent) = explode('%', $info['parent']); if (empty($topics[$parent_module][$parent])) { // If it doesn't exist, top level. $parent = ''; @@ -283,7 +283,7 @@ $parent = ''; } } - + if (!isset($topics[$parent_module][$parent]['children'])) { $topics[$parent_module][$parent]['children'] = array(); }