diff -r c83ff194977a -r 723bb7acf914 install.php --- a/install.php Mon Jul 02 20:33:57 2007 -0400 +++ b/install.php Tue Jul 03 14:07:35 2007 -0400 @@ -61,6 +61,8 @@ require('includes/rijndael.php'); require('includes/functions.php'); +strip_magic_quotes_gpc(); + //die('Key size: ' . AES_BITS . '
Block size: ' . AES_BLOCKSIZE); if(!function_exists('wikiFormat')) @@ -664,7 +666,7 @@ { var frm = document.forms.siteinfo; ret = true; - if(frm.sitename.value.match(/^([A-z0-9 ]+)$/g) && frm.sitename.value != 'Enano') + if(frm.sitename.value.match(/^(.+)$/g) && frm.sitename.value != 'Enano') { document.getElementById('s_name').src='images/good.gif'; } @@ -701,7 +703,7 @@ '."\n"; + echo ''."\n"; } ?>

The next step is to enter some information about your website. You can always change this information later, using the administration panel.

@@ -796,7 +798,7 @@ '."\n"; + echo ''."\n"; } ?>

Next, enter your desired username and password. The account you create here will be used to administer your site.

@@ -836,48 +838,52 @@