summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-07-14 12:46:37 +0100
committerAnika Henke <anika@selfthinker.org>2012-07-14 12:46:37 +0100
commitd6ba7eb1ef8c1fe1b561e77b0788611bde35c527 (patch)
treece84db3cb49ff3467092a4d15d1416d1644bbe75 /install.php
parentc8839c220c49633ea45ce5d0e4be1f411f66ad6c (diff)
downloadrpg-d6ba7eb1ef8c1fe1b561e77b0788611bde35c527.tar.gz
rpg-d6ba7eb1ef8c1fe1b561e77b0788611bde35c527.tar.bz2
fixed validation errors in the installer
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php
index 6669de49d..488cf58ab 100644
--- a/install.php
+++ b/install.php
@@ -96,7 +96,7 @@ header('Content-Type: text/html; charset=utf-8');
</head>
<body style="">
<h1 style="float:left">
- <img src="lib/exe/fetch.php?media=wiki:dokuwiki-128.png&w=64"
+ <img src="lib/exe/fetch.php?media=wiki:dokuwiki-128.png&amp;w=64"
style="vertical-align: middle;" alt="" />
<?php echo $lang['i_installer']?>
</h1>
@@ -178,7 +178,7 @@ function print_form($d){
<fieldset style="margin-top: 1em;">
<label for="acl">
- <input type="checkbox" name="d[acl]" id="acl" <?php echo(($d['acl'] ? 'checked="checked"' : ''));?> />
+ <input type="checkbox" name="d[acl]" id="acl" <?php echo(($d['acl'] ? ' checked="checked"' : ''));?> />
<?php echo $lang['i_enableacl']?></label>
<fieldset id="acldep">
@@ -215,7 +215,7 @@ function print_form($d){
foreach($license as $key => $lic){
echo '<label for="lic_'.$key.'">';
echo '<input type="radio" name="d[license]" value="'.htmlspecialchars($key).'" id="lic_'.$key.'"'.
- (($d['license'] == $key)?'checked="checked"':'').'>';
+ (($d['license'] == $key)?' checked="checked"':'').'>';
echo htmlspecialchars($lic['name']);
if($lic['url']) echo ' <a href="'.$lic['url'].'" target="_blank"><sup>[?]</sup></a>';
echo '</label>';