Revision 1069
Added by Matthias over 16 years ago
| modify_settings.php | ||
|---|---|---|
| 136 | 136 |
<tr> |
| 137 | 137 |
<td class="setting_name"><?php echo $TEXT['CAPTCHA_VERIFICATION']; ?>:</td> |
| 138 | 138 |
<td> |
| 139 |
<input type="radio" name="use_captcha" id="use_captcha_true" value="1"<?php if($fetch_content['use_captcha'] == true) { echo ' checked'; } ?> />
|
|
| 139 |
<input type="radio" name="use_captcha" id="use_captcha_true" value="1"<?php if($fetch_content['use_captcha'] == true) { echo ' checked="checked"'; } ?> />
|
|
| 140 | 140 |
<label for="use_captcha_true"><?php echo $TEXT['ENABLED']; ?></label> |
| 141 |
<input type="radio" name="use_captcha" id="use_captcha_false" value="0"<?php if($fetch_content['use_captcha'] == false) { echo ' checked'; } ?> />
|
|
| 141 |
<input type="radio" name="use_captcha" id="use_captcha_false" value="0"<?php if($fetch_content['use_captcha'] == false) { echo ' checked="checked"'; } ?> />
|
|
| 142 | 142 |
<label for="use_captcha_false"><?php echo $TEXT['DISABLED']; ?></label> |
| 143 | 143 |
</td> |
| 144 | 144 |
</tr> |
Also available in: Unified diff
Fixed some validiation bugs in core and different modules (Thanks to luisehahne)