diff options
author | chris <chris@jalakai.co.uk> | 2006-07-29 01:29:30 +0200 |
---|---|---|
committer | chris <chris@jalakai.co.uk> | 2006-07-29 01:29:30 +0200 |
commit | 9c70688ac597a2aab8d31992036f3942459bc153 (patch) | |
tree | 2b6edee839e8d6a28f6354dfe270fed6e9ba40a6 | |
parent | 8f7d700c4ef8ddaf2cccb81d5cd641eb975faf90 (diff) | |
download | rpg-9c70688ac597a2aab8d31992036f3942459bc153.tar.gz rpg-9c70688ac597a2aab8d31992036f3942459bc153.tar.bz2 |
installer - fix policy 1 + two appearance changes
darcs-hash:20060728232930-9b6ab-78d8ccc570e1e62b8d5b958f70036ce0fd4f0d7b.gz
-rw-r--r-- | install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php index 5af27a0c6..c202601a6 100644 --- a/install.php +++ b/install.php @@ -61,7 +61,7 @@ header('Content-Type: text/html; charset=utf-8'); br.cl { clear:both; } code { font-size: 110%; color: #008000; } fieldset { border: none } - label { display: block;} + label { display: block; margin-top: 0.5em; } select.text, input.text { width: 30em; margin: 0 0.5em; } </style> <script type="text/javascript" language="javascript"> @@ -293,7 +293,7 @@ EOT; if($d['policy'] == 2){ $output .= "* @ALL 0\n"; $output .= "* @users 8\n"; - }elseif($d['policy'] == 2){ + }elseif($d['policy'] == 1){ $output .= "* @ALL 1\n"; $output .= "* @users 8\n"; }else{ @@ -451,7 +451,7 @@ function langsel(){ $sel = ($l == $LC) ? 'selected="selected"' : ''; echo '<option value="'.$l.'" '.$sel.'>'.$l.'</option>'; } - echo '</select>'; + echo '</select> '; echo '<input type="submit" value="'.$lang['btn_update'].'" />'; echo '</form>'; } |