Revision 1069
Added by Matthias over 15 years ago
index.php | ||
---|---|---|
302 | 302 |
Server Operating System: |
303 | 303 |
</td> |
304 | 304 |
<td width="180"> |
305 |
<input type="radio" tabindex="4" name="operating_system" id="operating_system_linux" onclick="document.getElementById('file_perms_box').style.display = 'block';" value="linux"<?php if(!isset($_SESSION['operating_system']) OR $_SESSION['operating_system'] == 'linux') { echo ' checked'; } ?> /> |
|
305 |
<input type="radio" tabindex="4" name="operating_system" id="operating_system_linux" onclick="document.getElementById('file_perms_box').style.display = 'block';" value="linux"<?php if(!isset($_SESSION['operating_system']) OR $_SESSION['operating_system'] == 'linux') { echo ' checked="checked"'; } ?> />
|
|
306 | 306 |
<font style="cursor: pointer;" onclick="javascript: change_os('linux');">Linux/Unix based</font> |
307 | 307 |
<br /> |
308 |
<input type="radio" tabindex="5" name="operating_system" id="operating_system_windows" onclick="document.getElementById('file_perms_box').style.display = 'none';" value="windows"<?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo ' checked'; } ?> /> |
|
308 |
<input type="radio" tabindex="5" name="operating_system" id="operating_system_windows" onclick="document.getElementById('file_perms_box').style.display = 'none';" value="windows"<?php if(isset($_SESSION['operating_system']) AND $_SESSION['operating_system'] == 'windows') { echo ' checked="checked"'; } ?> />
|
|
309 | 309 |
<font style="cursor: pointer;" onclick="javascript: change_os('windows');">Windows</font> |
310 | 310 |
</td> |
311 | 311 |
<td> |
... | ... | |
353 | 353 |
</td> |
354 | 354 |
<td> </td> |
355 | 355 |
<td colspan="2"> |
356 |
<input type="checkbox" tabindex="12" name="install_tables" id="install_tables" value="true"<?php if(!isset($_SESSION['install_tables'])) { echo ' checked'; } elseif($_SESSION['install_tables'] == 'true') { echo ' checked'; } ?> />
|
|
356 |
<input type="checkbox" tabindex="12" name="install_tables" id="install_tables" value="true"<?php if(!isset($_SESSION['install_tables'])) { echo ' checked="checked"'; } elseif($_SESSION['install_tables'] == 'true') { echo ' checked="checked"'; } ?> />
|
|
357 | 357 |
<label for="install_tables" style="color: #666666;">Install Tables</label> |
358 | 358 |
<br /> |
359 | 359 |
<span style="font-size: 10px; color: #666666;">(Please note: May remove existing tables and data)</span></td> |
Also available in: Unified diff
Fixed some validiation bugs in core and different modules (Thanks to luisehahne)