? help_themes.patch ? unclean_urls.patch Index: advanced_help.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/advanced_help/advanced_help.module,v retrieving revision 1.41 diff -u -p -r1.41 advanced_help.module --- advanced_help.module 28 Oct 2008 17:33:47 -0000 1.41 +++ advanced_help.module 6 Jun 2010 16:55:13 -0000 @@ -659,8 +659,9 @@ function _advanced_help_parse_ini() { $cache = array('topics' => array(), 'settings' => array()); $help_path = drupal_get_path('module', 'advanced_help') . '/modules'; - foreach (module_list() as $module) { - $module_path = drupal_get_path('module', $module); + foreach (array_merge(module_list(), list_themes()) as $plugin) { + $module = is_string($plugin) ? $plugin : $plugin->name; + $module_path = drupal_get_path(is_string($plugin) ? 'module' : 'theme', $module); $info = array(); if (file_exists("$module_path/help/$module.help.ini")) { $path = "$module_path/help";