User: sits    
  Date: 07/11/30 12:46:55

  Modified:    lib/Codestriker/TopicListeners Email.pm
  Log:
  Fixed a typo which prevented error messages being shown in some situations.
  
  
  
  Index: Email.pm
  ===================================================================
  RCS file: 
/cvsroot/codestriker/codestriker/lib/Codestriker/TopicListeners/Email.pm,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- Email.pm  29 Jun 2007 06:54:28 -0000      1.22
  +++ Email.pm  30 Nov 2007 20:46:54 -0000      1.23
  @@ -506,10 +506,10 @@
       # characters.
       $smtp->datasend(encode_qp(encode("UTF-8", $body)));
       $smtp->dataend();
  -    $smtp->ok() || return "Couldn't send email $!, " . smtp->message();
  +    $smtp->ok() || return "Couldn't send email $!, " . $smtp->message();
   
       $smtp->quit();
  -    $smtp->ok() || return "Couldn't send email $!, " . smtp->message();
  +    $smtp->ok() || return "Couldn't send email $!, " . $smtp->message();
   
       return '';
   }
  
  
  

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
Codestriker-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-commits

Reply via email to