diff options
Diffstat (limited to 'admin')
-rw-r--r-- | admin/themes/clear/themeconf.inc.php | 2 | ||||
-rw-r--r-- | admin/themes/default/themeconf.inc.php | 3 | ||||
-rw-r--r-- | admin/themes/roma/themeconf.inc.php | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/admin/themes/clear/themeconf.inc.php b/admin/themes/clear/themeconf.inc.php index e007a971d..a73ebbcec 100644 --- a/admin/themes/clear/themeconf.inc.php +++ b/admin/themes/clear/themeconf.inc.php @@ -1,6 +1,6 @@ <?php
$themeconf = array(
- 'theme' => 'clear',
+ 'name' => 'clear',
'parent' => 'default',
'admin_icon_dir' => 'admin/themes/clear/icon',
);
diff --git a/admin/themes/default/themeconf.inc.php b/admin/themes/default/themeconf.inc.php index 36352b2b2..9a6b8fe42 100644 --- a/admin/themes/default/themeconf.inc.php +++ b/admin/themes/default/themeconf.inc.php @@ -1,8 +1,9 @@ <?php $themeconf = array( - 'theme' => 'default', + 'name' => 'default', 'icon_dir' => 'themes/default/icon', 'admin_icon_dir' => 'admin/themes/default/icon', 'mime_icon_dir' => 'themes/default/icon/mimetypes/', + 'local_head' => 'local_head.tpl', ); ?> diff --git a/admin/themes/roma/themeconf.inc.php b/admin/themes/roma/themeconf.inc.php index 886ed60db..f6ec175e2 100644 --- a/admin/themes/roma/themeconf.inc.php +++ b/admin/themes/roma/themeconf.inc.php @@ -1,6 +1,6 @@ <?php $themeconf = array( - 'theme' => 'roma', + 'name' => 'roma', 'parent' => 'default', ); ?> |