Skip to content

Commit

Permalink
MDL-30607 message: removed an if condition that prevented you from cl…
Browse files Browse the repository at this point in the history
…earing an overrident email address
  • Loading branch information
andyjdavis committed Dec 7, 2011
1 parent 01f7f6f commit 924deff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion message/output/email/message_output_email.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function config_form($preferences){
* @param array $preferences preferences array
*/
function process_form($form, &$preferences){
if (isset($form->email_email) && !empty($form->email_email)) {
if (isset($form->email_email)) {
$preferences['message_processor_email_email'] = $form->email_email;
}
}
Expand Down

0 comments on commit 924deff

Please sign in to comment.