diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 08:27:01 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 08:27:01 +0000 |
commit | e6b14d26156bfbe87d55860cc1ae1bef6b4fc20e (patch) | |
tree | 0b286458fd813d1659a9008ee34d29818487cdf0 /modules/system/system.module | |
parent | 4fee0bdbeca6097771e3c0db10154f4830b5eb2d (diff) | |
download | brdo-e6b14d26156bfbe87d55860cc1ae1bef6b4fc20e.tar.gz brdo-e6b14d26156bfbe87d55860cc1ae1bef6b4fc20e.tar.bz2 |
- #13738: Fix bug in configuring theme styles
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 e0d186596..f9ed77254 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -94,7 +94,7 @@ function system_menu($may_cache) { foreach (list_themes() as $theme) { $items[] = array('path' => 'admin/themes/settings/'. $theme->name, 'title' => $theme->name, - 'callback' => 'system_theme_settings', 'access' => $access, + 'callback' => 'system_theme_settings', 'callback arguments' => array($theme->name), 'access' => $access, 'type' => MENU_LOCAL_TASK); } |