Changeset 1e487a8 in github
- Timestamp:
- May 26, 2009 2:16:11 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 1301e98
- Parents:
- 046c53c
- File:
-
- 1 edited
-
plugins/managesieve/managesieve.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/managesieve/managesieve.php
r5d90e1d r1e487a8 368 368 if ($this->form['actions'][$i]['target'] == '') 369 369 $this->errors['actions'][$i]['target'] = $this->gettext('cannotbeempty'); 370 else if (! check_email($this->form['actions'][$i]['target']))370 else if (!$this->check_email($this->form['actions'][$i]['target'])) 371 371 $this->errors['actions'][$i]['target'] = $this->gettext('noemailwarning'); 372 372 break; … … 383 383 if (!$address) 384 384 unset($this->form['actions'][$i]['addresses'][$aidx]); 385 else if(! check_email($address)) {385 else if(!$this->check_email($address)) { 386 386 $this->errors['actions'][$i]['addresses'] = $this->gettext('noemailwarning'); 387 387 break;
Note: See TracChangeset
for help on using the changeset viewer.
