diff options
author | alecpl <alec@alec.pl> | 2008-06-15 09:19:47 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-06-15 09:19:47 +0000 |
commit | e58df3adc9b4182c232c94178d024bb4a89c2290 (patch) | |
tree | b0bb042ac42eab574bcb7dcec1c8d4b5b90ee54a /installer/config.php | |
parent | 46290afee202066d2510db1c02e86838da88545c (diff) |
- Added option to select skin in user preferences (#1485031)
- template_exists() moved to rcube_template class
Diffstat (limited to 'installer/config.php')
-rw-r--r-- | installer/config.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/installer/config.php b/installer/config.php index 04683b9c4..bf1ae610c 100644 --- a/installer/config.php +++ b/installer/config.php @@ -78,15 +78,15 @@ echo $input_prodname->show($RCI->getprop('product_name')); <div>The name of your service (used to compose page titles)</div> </dd> -<dt class="propname">skin_path</dt> +<dt class="propname">default_skin</dt> <dd> <?php -$input_skinpath = new html_inputfield(array('name' => '_skin_path', 'size' => 30, 'id' => "cfgskinpath")); -echo $input_skinpath->show($RCI->getprop('skin_path')); +$input_skin = new html_inputfield(array('name' => '_default_skin', 'size' => 30, 'id' => "cfgdefaultskin")); +echo $input_skin->show($RCI->getprop('default_skin')); ?> -<div>Relative path to the skin folder</div> +<div>Name of the skin folder</div> </dd> <dt class="propname">temp_dir</dt> |