diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-14 14:03:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-14 14:03:48 +0000 |
commit | 7231b6ea2fbfc700925dcfdf9ad7d76bd701caf1 (patch) | |
tree | 9e675a5ad31ba4c46dd58ee6d0f55203b80ae65c /modules/system/system.module | |
parent | 75e9494f73d1bc4f059ea4e8d9cba5c11cbb5824 (diff) | |
download | brdo-7231b6ea2fbfc700925dcfdf9ad7d76bd701caf1.tar.gz brdo-7231b6ea2fbfc700925dcfdf9ad7d76bd701caf1.tar.bz2 |
- Patch #275801 by Damien Tournoud and Gribnif: fixed performance issue due to typo.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index b1e5d2897..cebf440ae 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -990,7 +990,7 @@ function system_theme_data() { function _system_theme_data() { static $themes_info = array(); - if (empty($theme_info)) { + if (empty($themes_info)) { // Find themes $themes = drupal_system_listing('\.info$', 'themes'); // Find theme engines |