summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-06 14:31:51 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-06 14:31:51 +0000
commitb0676cf351ccb48e7d2cf1d93d5728f3e834886a (patch)
tree2b3c85ef24bd34fa0e3d0f91b657ebb43d0d525c /includes
parentec3c0716aa39acc91fe75ce592ce77bdfdd2eb56 (diff)
downloadbrdo-b0676cf351ccb48e7d2cf1d93d5728f3e834886a.tar.gz
brdo-b0676cf351ccb48e7d2cf1d93d5728f3e834886a.tar.bz2
- Patch #134161 by chx: no menu tabs for themes.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 762885f86..6e2a69c2e 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -199,13 +199,13 @@ function _theme_build_registry($theme, $theme_engine) {
* An array of the currently available themes.
*/
function list_themes($refresh = FALSE) {
- static $list;
+ static $list = array();
if ($refresh) {
- unset($list);
+ $list = array();
}
- if (!$list) {
+ if (empty($list)) {
$list = array();
$result = db_query("SELECT * FROM {system} WHERE type = 'theme'");
while ($theme = db_fetch_object($result)) {