diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-15 09:19:47 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-15 09:19:47 +0000 |
| commit | 495ef5b443452f92fae14adbcace0d73ec0f7e41 (patch) | |
| tree | 244b7bceffa8dbf9c9f41df63040c902b654eb13 /roundcubemail/config | |
| parent | 85d49a4e7303dec60778307f3aa158cf630abd10 (diff) | |
- Added option to select skin in user preferences (#1485031)
- template_exists() moved to rcube_template class
git-svn-id: https://svn.roundcube.net/trunk@1539 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 17ba0a031..ac921a03c 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -94,16 +94,16 @@ $rcmail_config['smtp_log'] = TRUE; // available cols are: subject, from, to, cc, replyto, date, size, encoding $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); -// relative path to the skin folder -$rcmail_config['skin_path'] = 'skins/default/'; +// skin name: folder from skins/ +$rcmail_config['default_skin'] = 'default'; // includes should be interpreted as PHP files $rcmail_config['skin_include_php'] = FALSE; -// use this folder to store temp files (must be writebale for apache user) +// use this folder to store temp files (must be writeable for apache user) $rcmail_config['temp_dir'] = 'temp/'; -// use this folder to store log files (must be writebale for apache user) +// use this folder to store log files (must be writeable for apache user) $rcmail_config['log_dir'] = 'logs/'; // session lifetime in minutes @@ -315,6 +315,9 @@ $rcmail_config['delete_always'] = false; /***** these settings can be overwritten by user's preferences *****/ +// skin name (see 'default_skin' option) +$rcmail_config['skin'] = $rcmail_config['default_skin']; + // show up to X items in list view $rcmail_config['pagesize'] = 40; |
