diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-18 02:24:56 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-18 02:24:56 +0000 |
commit | e42cac89e8ccf2850f8fe9ea2b5e66adc21d94a0 (patch) | |
tree | 72f2810cc7c50627850a8c3e9e7fbbde2eaf7b28 /etc/inc/config.inc | |
parent | 7adbc2a230e7e4522bb4dc1bb94bc7b445401829 (diff) | |
download | pfsense-e42cac89e8ccf2850f8fe9ea2b5e66adc21d94a0.zip pfsense-e42cac89e8ccf2850f8fe9ea2b5e66adc21d94a0.tar.gz |
3 out of 4 kids agree, metallic is a better theme!
Diffstat (limited to 'etc/inc/config.inc')
-rw-r--r-- | etc/inc/config.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc index 355ae2e..06dd314 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -649,7 +649,12 @@ function convert_config() { $config['version'] = "1.8"; } - + + /* Convert 1.8 -> 1.9 */ + if ($config['version'] == "1.7") { + $config['theme']="metallic"; + $config['version'] = "1.9"; + } if ($prev_version != $config['version']) write_config("Upgraded config version level from {$prev_version} to {$config['version']}"); |