- Timestamp:
- May 23, 2013, 1:08:00 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/mail/mailer.php
r414 r416 61 61 // the small data holding architecture 62 62 public $_values; 63 #private $default_values; 63 // Security: Captcha checking not on $_values basis since that is regularily provided by 64 // POST or REQUEST data which are directly given by user => spambots could disable captcha check 65 public $enable_captcha_check = true; 64 66 65 67 function __construct(Array $data=array()) { … … 146 148 147 149 // show captcha validation, if neccessary 148 if( !$this->check_captcha()) {150 if($this->enable_captcha_check && !$this->check_captcha()) { 149 151 return false; 150 152 }
Note: See TracChangeset
for help on using the changeset viewer.