Browse Source

Revert "a notice and link to tinyboard.org wiki when filling out the config"

This reverts commit 12d6dc85e6.
pull/40/head
Savetheinternet 13 years ago
parent
commit
ce3ebd3311
  1. 9
      install.php

9
install.php

@ -117,9 +117,8 @@
}
function row($item, $result) {
global $page, $config, $__is_error;
if(!$result)
$__is_error = true;
global $page, $config;
$page['body'] .= '<tr><th>' . $item . '</th><td><img style="width:16px;height:16px" src="' . $config['dir']['static'] . ($result ? 'ok.png' : 'error.png') . '" /></td></tr>';
}
@ -150,9 +149,7 @@
$page['body'] .= '</table>
<p style="text-align:center">
<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>
<a href="?step=2">Continue.</a>
</p>';
echo Element('page.html', $page);

Loading…
Cancel
Save