added suppression of progress by default

This commit is contained in:
Matthew Vale
2015-12-03 14:59:46 +00:00
parent 7ce32f11d4
commit fb4edcdd74
3 changed files with 10 additions and 2 deletions
@@ -35,6 +35,7 @@ include "root.php";
protected $dbh;
public $debug = false;
public $echo_progress = false;
public $install_language = 'en-us';
public $admin_username;
@@ -71,7 +72,9 @@ include "root.php";
}
function write_progress($message) {
echo "$message\n";
if($this->echo_progress){
echo "$message\n";
}
}
function install_phase_1() {