diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-10 15:40:03 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-10 15:40:03 +0000 |
commit | ea02bd1d2e1b8f134ac810116223a42883b41c73 (patch) | |
tree | 599776db760047caf93b9fc02ca37716daa14aa9 /includes | |
parent | 5a2fbd01ba7205d5173580152efc0deba69ff105 (diff) | |
download | brdo-ea02bd1d2e1b8f134ac810116223a42883b41c73.tar.gz brdo-ea02bd1d2e1b8f134ac810116223a42883b41c73.tar.bz2 |
#258089 follow-up by JohnAlbin: Fix missing period on code comment. Trivial Patch of the Month award! :)
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 1f7396397..3f2c4d014 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -373,7 +373,7 @@ function _theme_process_registry(&$cache, $name, $type, $theme, $path) { // Let themes have preprocess functions even if they didn't register a template. if ($type == 'theme' || $type == 'base_theme') { foreach ($cache as $hook => $info) { - // Check only if it's a template and not registered by the theme or engine + // Check only if it's a template and not registered by the theme or engine. if (!empty($info['template']) && empty($result[$hook])) { if (!isset($info['preprocess functions'])) { $cache[$hook]['preprocess functions'] = array(); |