Skip to content
This repository has been archived by the owner on Feb 9, 2025. It is now read-only.

Commit

Permalink
Update index.php
Browse files Browse the repository at this point in the history
bug fix index install at database setting
  • Loading branch information
fherryfherry authored Jul 28, 2016
1 parent ed425ce commit db0d32d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,14 @@
url:$(this).attr('action'),
data:$(this).serialize(),
success:function(r) {
if(r==1) {
if(r=='success') {
next_step(3);
}else{
alert("Database Can`t Created !");
alert(r);
}
},
error:function() {
alert('Request faield !');
alert('Request failed ! something went wrong !');
}
})
return false;
Expand Down

0 comments on commit db0d32d

Please sign in to comment.