diff --git a/install.php b/install.php index a7bf8e96..2422abb9 100644 --- a/install.php +++ b/install.php @@ -117,8 +117,9 @@ } function row($item, $result) { - global $page, $config; - + global $page, $config, $__is_error; + if(!$result) + $__is_error = true; $page['body'] .= '' . $item . ''; } @@ -149,7 +150,9 @@ $page['body'] .= '

- Continue. + Continue' . (isset($__is_error) ? ' anyway' : '') . '.

'; echo Element('page.html', $page); @@ -428,4 +431,4 @@ echo Element('page.html', $page); } -?> \ No newline at end of file +?>