summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-18 20:42:23 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-18 20:42:23 +0000
commit3d8febbaa53bd7179cc934909544a606f48f10b8 (patch)
tree35c183f08dd3811d770a1670307c027ee7305799 /modules/help/help.module
parent318ac983e27067d1a9bc23b531b0da70ab2ffb7c (diff)
downloadbrdo-3d8febbaa53bd7179cc934909544a606f48f10b8.tar.gz
brdo-3d8febbaa53bd7179cc934909544a606f48f10b8.tar.bz2
- Patch #132018 by alienbrain: replace instances of _module_parse_info_file() with drupal_parse_info_file().
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index bacdf616d..86cb40245 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -111,7 +111,7 @@ function help_page() {
$name = arg(2);
$output = '';
if (module_hook($name, 'help')) {
- $module = _module_parse_info_file(drupal_get_path('module', $name) .'/'. $name .'.info');
+ $module = drupal_parse_info_file(drupal_get_path('module', $name) .'/'. $name .'.info');
drupal_set_title($module['name']);
$temp = module_invoke($name, 'help', "admin/help#$name");