diff options
author | vsapronov <vladimir.sapronov@gmail.com> | 2013-09-24 23:31:47 -0400 |
---|---|---|
committer | vsapronov <vladimir.sapronov@gmail.com> | 2013-09-25 00:13:38 -0400 |
commit | dc382bc9ccb0735ebc63b8bc8d43ff8512ac171a (patch) | |
tree | fd238940b040adc9828e07681607a66c70e0d267 /core/templates | |
parent | 2d12e52769a30ba37d5760b1194f613bcc71035b (diff) | |
download | nextcloud-server-dc382bc9ccb0735ebc63b8bc8d43ff8512ac171a.tar.gz nextcloud-server-dc382bc9ccb0735ebc63b8bc8d43ff8512ac171a.zip |
autoconfig.php could have only some of parameters; installation.php generates UI accordingly
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 8b087706801..ed8057452bd 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -61,6 +61,7 @@ </p> </fieldset> + <?php if(!$_['directorySet']): ?> <fieldset id="datadirField"> <legend><a id="showAdvanced"><?php p($l->t( 'Advanced' )); ?> <img class="svg" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>" /></a></legend> <div id="datadirContent"> @@ -70,7 +71,9 @@ value="<?php p(OC_Helper::init_var('directory', $_['directory'])); ?>" /> </div> </fieldset> + <?php endif; ?> + <?php if(!$_['dbSet']): ?> <fieldset id='databaseField'> <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle'] or $_['hasMSSQL']) $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> @@ -171,6 +174,7 @@ </div> <?php endif; ?> </fieldset> + <?php endif; ?> <div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" /></div> </form> |