mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
automatically show advanced options when no sqlite is available
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
var dbtypes
|
||||
$(document).ready(function() {
|
||||
dbtypes={
|
||||
sqlite:!!$('#hasSQLite').val(),
|
||||
mysql:!!$('#hasMySQL').val(),
|
||||
postgresql:!!$('#hasPostgreSQL').val(),
|
||||
}
|
||||
|
||||
$('#selectDbType').buttonset();
|
||||
$('#datadirContent').hide(250);
|
||||
$('#databaseField').hide(250);
|
||||
@@ -60,4 +67,9 @@ $(document).ready(function() {
|
||||
form.submit();
|
||||
return false;
|
||||
});
|
||||
|
||||
if(!dbtypes.sqlite){
|
||||
$('#showAdvanced').click();
|
||||
$('input[type="radio"]').first().click();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'></input>
|
||||
<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'></input>
|
||||
<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'></input>
|
||||
<form action="index.php" method="post">
|
||||
|
||||
<input type="hidden" name="install" value="true" />
|
||||
|
||||
Reference in New Issue
Block a user