diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-01-04 09:32:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-01-04 09:32:28 +0000 |
commit | 9385794e235c6e291a02540bdfe0ce6cd0367449 (patch) | |
tree | 99d24c423b797707d1f0d538ab89dc274578df41 /includes | |
parent | 3dae958731450beeda816286b947016ec263ded1 (diff) | |
download | brdo-9385794e235c6e291a02540bdfe0ce6cd0367449.tar.gz brdo-9385794e235c6e291a02540bdfe0ce6cd0367449.tar.bz2 |
- Patch #41548 by Neil: critical bugfix: theme didn't load when styles are used.
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 cd12e3f55..cf520c95c 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -99,7 +99,7 @@ function list_themes($refresh = FALSE) { if (!$list) { $list = array(); - $result = db_query("SELECT * FROM {system} WHERE type = 'theme' AND status = 1"); + $result = db_query("SELECT * FROM {system} WHERE type = 'theme'"); while ($theme = db_fetch_object($result)) { if (file_exists($theme->filename)) { $list[$theme->name] = $theme; |