diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-11-26 16:36:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-11-26 16:36:44 +0000 |
commit | 9a96837b89a0f6b2b5b2c99063e5faeda53d88c6 (patch) | |
tree | 764bc2146802b2e35d5b54cf2afb4f428372186a /includes/theme.inc | |
parent | 22444f2fedf0fbe34423128ede822adc0f82e411 (diff) | |
download | brdo-9a96837b89a0f6b2b5b2c99063e5faeda53d88c6.tar.gz brdo-9a96837b89a0f6b2b5b2c99063e5faeda53d88c6.tar.bz2 |
- Patch #163246 by keith smith, freso, O Govinda, catch, webchick et al: fixed minor spelling issues and fixed spacing issues.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index d1e0b0d86..89825dba5 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -515,9 +515,9 @@ function list_theme_engines($refresh = FALSE) { * provided so that the preprocessor is not locked into a specific theme. * This makes it easy to share and transport code but theme authors must be * careful to prevent fatal re-declaration errors when using sub-themes that - * have their own preprocessor named exactly the same as it's base theme. In + * have their own preprocessor named exactly the same as its base theme. In * the default theme engine (PHPTemplate), sub-themes will load their own - * template.php file in addition to the one used for it's parent theme. This + * template.php file in addition to the one used for its parent theme. This * increases the risk for these errors. A good practice is to use the engine * name for the base theme and the theme name for the sub-themes to minimize * this possibility. @@ -1778,7 +1778,7 @@ function template_preprocess_page(&$variables) { isset($variables[$region]) ? $variables[$region] .= $blocks : $variables[$region] = $blocks; } - // Setup layout variable. + // Set up layout variable. $variables['layout'] = 'none'; if (!empty($variables['left'])) { $variables['layout'] = 'left'; |