summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-07-24 21:58:07 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-07-24 21:58:07 +0200
commita5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0 (patch)
treefc788404c74d879d50cd70982df3dd5ce5f8797a /install.php
parent225001d7d4c443f768ca486e92ce217abd54dd0c (diff)
downloadrpg-a5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0.tar.gz
rpg-a5bc8bc1a2e9fc1e6e2b14ce3724dad56e8a42f0.tar.bz2
fixed syntax error in install.php
darcs-hash:20060724195807-7ad00-3e07556811afa544b35b3e0c11661bef947ed762.gz
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
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>