diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-04 06:13:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-04 06:13:44 +0000 |
commit | db9d4424831cccedef24d9a15c0f7b25de2dee5b (patch) | |
tree | b34a162b660742c04e81fbdc2d2da0a50559ea2f | |
parent | 704dd81b3292916beb0037f3bf53f2f3b7f4e536 (diff) | |
download | brdo-db9d4424831cccedef24d9a15c0f7b25de2dee5b.tar.gz brdo-db9d4424831cccedef24d9a15c0f7b25de2dee5b.tar.bz2 |
- Fixed typo in system module. Patch by Ax.
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module index 0907596d9..86febb4d5 100644 --- a/modules/system.module +++ b/modules/system.module @@ -131,7 +131,7 @@ function system_view_module($name) { } function system_view_theme($name) { - $themes = $theme_list(); + $themes = theme_list(); $theme = $themes[$name]; if ($theme) { include_once "$theme->filename"; diff --git a/modules/system/system.module b/modules/system/system.module index 0907596d9..86febb4d5 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -131,7 +131,7 @@ function system_view_module($name) { } function system_view_theme($name) { - $themes = $theme_list(); + $themes = theme_list(); $theme = $themes[$name]; if ($theme) { include_once "$theme->filename"; |