Revision 250
Added by ryan almost 19 years ago
modify_settings.php | ||
---|---|---|
106 | 106 |
</tr> |
107 | 107 |
<?php if(extension_loaded('gd') AND function_exists('imageCreateFromJpeg')) { /* Make's sure GD library is installed */ ?> |
108 | 108 |
<tr> |
109 |
<td class="setting_name"><?php echo $TEXT['CAPTCHA_VERIFICATION']; ?>:</td> |
|
109 | 110 |
<td> |
111 |
<input type="radio" name="use_captcha" id="use_captcha_true" value="1"<?php if($fetch_content['use_captcha'] == true) { echo ' checked'; } ?> /> |
|
112 |
<label for="use_captcha_true"><?php echo $TEXT['ENABLED']; ?></label> |
|
113 |
<input type="radio" name="use_captcha" id="use_captcha_false" value="0"<?php if($fetch_content['use_captcha'] == false) { echo ' checked'; } ?> /> |
|
114 |
<label for="use_captcha_false"><?php echo $TEXT['DISABLED']; ?></label> |
|
115 |
</td> |
|
116 |
</tr> |
|
117 |
<tr> |
|
118 |
<td> |
|
110 | 119 |
<?php echo $TEXT['RESIZE_IMAGE_TO']; ?>: |
111 | 120 |
</td> |
112 | 121 |
<td> |
Also available in: Unified diff
Added Captcha to News module