diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-07-24 21:58:07 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-07-24 21:58:07 +0200 |
commit | a5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0 (patch) | |
tree | fc788404c74d879d50cd70982df3dd5ce5f8797a | |
parent | 225001d7d4c443f768ca486e92ce217abd54dd0c (diff) | |
download | rpg-a5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0.tar.gz rpg-a5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0.tar.bz2 |
fixed syntax error in install.php
darcs-hash:20060724195807-7ad00-3e07556811afa544b35b3e0c11661bef947ed762.gz
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 6f9e5823a..d13f96710 100644 --- a/install.php +++ b/install.php @@ -155,7 +155,7 @@ if (isset($_REQUEST['submit'])) { $data = cleanText('data', '', ''); $changeslog = isset($_REQUEST['changeslog']); $acl = isset($_REQUEST['acl']); - $superuser = cleanText('superuser','','/\S+/', ); + $superuser = cleanText('superuser','','/\S+/'); $password = cleanText('password','','/\S+/'); $confirm = cleanText('confirm','','/^'.preg_quote($password,'/').'$/'); $fullname = cleanText('fullname','',''); @@ -407,4 +407,4 @@ fieldset.dependent { <a href="http://www.php.net"><img src="lib/tpl/default/images/button-php.gif" alt="powered by php" /></a> </div> </body> -</html>
\ No newline at end of file +</html> |