From 13b3500c6a58386e80aeb424efa9e79a25cf1820 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Thu, 16 Jun 2011 03:50:52 +1000 Subject: [PATCH] a notice and link to tinyboard.org wiki when filling out the config --- install.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/install.php b/install.php index b05016fb..a9e6b2e6 100755 --- 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);