Index: branches/RC/core/install.php =================================================================== diff -u -N -r9987 -r9988 --- branches/RC/core/install.php (.../install.php) (revision 9987) +++ branches/RC/core/install.php (.../install.php) (revision 9988) @@ -767,7 +767,9 @@ } $sqls = file_get_contents(FULL_PATH.$filename); - $this->RunSQLText($sqls, $replace_from, $replace_to); + if (!$this->RunSQLText($sqls, $replace_from, $replace_to)) { + $this->Done(); + } } /** @@ -815,8 +817,6 @@ $this->errorMessage = 'Error: ('.$this->Conn->getErrorCode().') '.$this->Conn->getErrorMsg().'

Database Query:
'.htmlspecialchars($sql).'
'; $this->LastQueryNum = $i+1; return false; -// $this->Done(); -// break; } } return true;