diff options
author | mistic100 <mistic@piwigo.org> | 2013-11-07 15:30:59 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-11-07 15:30:59 +0000 |
commit | ae974849bc5a2b2289e264c5166cfcae3a360450 (patch) | |
tree | 223c7d06b6d7fef5a291f3db9143729687fd7aca /admin/configuration.php | |
parent | 12b68909dc5f3173c099f805aae5c5e764fbd098 (diff) |
feature 2995 and feature 2997
change organization of configuration page
add theme parameter on GUI
change links color of dark mail theme (pink)
remove main themes css files
git-svn-id: http://piwigo.org/svn/trunk@25372 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/configuration.php')
-rw-r--r-- | admin/configuration.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index d30138b06..4aad5f49d 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -134,6 +134,10 @@ $comments_order = array( 'DESC' => l10n('Show latest comments first'), ); +$mail_themes = array( + 'clear' => 'Clear', + 'dark' => 'Dark', + ); //------------------------------ verification and registration of modifications if (isset($_POST['submit'])) @@ -347,6 +351,8 @@ switch ($page['section']) 'monday' => $lang['day'][1], ), 'week_starts_on_options_selected' => $conf['week_starts_on'], + 'mail_theme' => $conf['mail_theme'], + 'mail_theme_options' => $mail_themes, 'order_by' => $order_by, 'order_by_options' => $sort_fields, ) |