diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/Sylvia/themeconf.inc.php | 2 | ||||
-rw-r--r-- | themes/clear/themeconf.inc.php | 2 | ||||
-rw-r--r-- | themes/dark/themeconf.inc.php | 2 | ||||
-rw-r--r-- | themes/default/themeconf.inc.php | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/themes/Sylvia/themeconf.inc.php b/themes/Sylvia/themeconf.inc.php index 97af90564..d56f805ba 100644 --- a/themes/Sylvia/themeconf.inc.php +++ b/themes/Sylvia/themeconf.inc.php @@ -1,6 +1,6 @@ <?php $themeconf = array( - 'theme' => 'Sylvia', + 'name' => 'Sylvia', 'parent' => 'default', 'icon_dir' => 'themes/Sylvia/icon', 'mime_icon_dir' => 'themes/Sylvia/icon/mimetypes/', diff --git a/themes/clear/themeconf.inc.php b/themes/clear/themeconf.inc.php index 771a5be7b..1ce4817e9 100644 --- a/themes/clear/themeconf.inc.php +++ b/themes/clear/themeconf.inc.php @@ -1,6 +1,6 @@ <?php $themeconf = array( - 'theme' => 'clear', + 'name' => 'clear', 'parent' => 'default', ); ?> diff --git a/themes/dark/themeconf.inc.php b/themes/dark/themeconf.inc.php index 48ed9577c..018b97338 100644 --- a/themes/dark/themeconf.inc.php +++ b/themes/dark/themeconf.inc.php @@ -1,6 +1,6 @@ <?php $themeconf = array( - 'theme' => 'dark', + 'name' => 'dark', 'parent' => 'default', ); ?> diff --git a/themes/default/themeconf.inc.php b/themes/default/themeconf.inc.php index 0386fc4c6..50ab59819 100644 --- a/themes/default/themeconf.inc.php +++ b/themes/default/themeconf.inc.php @@ -1,7 +1,8 @@ <?php $themeconf = array( - 'theme' => 'default', + 'name' => 'default', 'icon_dir' => 'themes/default/icon', 'mime_icon_dir' => 'themes/default/icon/mimetypes/', + 'local_head' => 'local_head.tpl', ); ?> |