"Are you sure you want to continue" message when pre-installation test failed
This commit is contained in:
parent
d184b591d8
commit
38aec8b852
11
install.php
11
install.php
@ -117,8 +117,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function row($item, $result) {
|
function row($item, $result) {
|
||||||
global $page, $config;
|
global $page, $config, $__is_error;
|
||||||
|
if(!$result)
|
||||||
|
$__is_error = true;
|
||||||
$page['body'] .= '<tr><th>' . $item . '</th><td><img style="width:16px;height:16px" src="' . $config['dir']['static'] . ($result ? 'ok.png' : 'error.png') . '" /></td></tr>';
|
$page['body'] .= '<tr><th>' . $item . '</th><td><img style="width:16px;height:16px" src="' . $config['dir']['static'] . ($result ? 'ok.png' : 'error.png') . '" /></td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -149,7 +150,9 @@
|
|||||||
|
|
||||||
$page['body'] .= '</table>
|
$page['body'] .= '</table>
|
||||||
<p style="text-align:center">
|
<p style="text-align:center">
|
||||||
<a href="?step=2">Continue.</a>
|
<a href="?step=2"' .
|
||||||
|
(isset($__is_error) ? ' onclick="return confirm(\'Are you sure you want to continue when errors exist?\')"' : '') .
|
||||||
|
'>Continue' . (isset($__is_error) ? ' anyway' : '') . '.</a>
|
||||||
</p>';
|
</p>';
|
||||||
|
|
||||||
echo Element('page.html', $page);
|
echo Element('page.html', $page);
|
||||||
@ -428,4 +431,4 @@
|
|||||||
|
|
||||||
echo Element('page.html', $page);
|
echo Element('page.html', $page);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user