Fix install.tmpl input default value (#611)

* Fix install.tmpl input default value

* Update db_user to gitea

* Add when INSTALL_LOCK = false
This commit is contained in:
vz 2017-01-09 17:16:10 +08:00 committed by Lunny Xiao
parent 973282dae2
commit 19570f2d43
1 changed files with 6 additions and 0 deletions

View File

@ -209,6 +209,12 @@ function initInstall() {
return;
}
if ($('#db_host').val()=="") {
$('#db_host').val("127.0.0.1:3306");
$('#db_user').val("gitea");
$('#db_name').val("gitea");
}
// Database type change detection.
$("#db_type").change(function () {
var sqliteDefault = 'data/gitea.db';