Revision 2062
Added by darkviper almost 11 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
|
|
15 |
01 Jan-2014 Build 2062 Manuela v.d.Decken(DarkViper) |
|
16 |
! wb::mail added message on error if DEBUG is set |
|
17 |
01 Jan-2014 Build 2061 Manuela v.d.Decken(DarkViper) |
|
18 |
# wbLinkAbstract::_makeLinkFromTag fix error in built filepath |
|
14 | 19 |
01 Jan-2014 Build 2060 Manuela v.d.Decken(DarkViper) |
15 | 20 |
# initialize.php a little fix in handling of languages |
16 | 21 |
! modified translation for german language |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.4'); |
54 |
if(!defined('REVISION')) define('REVISION', '2060');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '2062');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/framework/class.wb.php | ||
---|---|---|
664 | 664 |
$myMail->AltBody = strip_tags($message); // CONTENT (TEXT) |
665 | 665 |
// check if there are any send mail errors, otherwise say successful |
666 | 666 |
if (!$myMail->Send()) { |
667 |
if (DEBUG) { msgQueue::add('PHPMailer Error: '.$myMail->ErrorInfo); } |
|
667 | 668 |
return false; |
668 | 669 |
} else { |
669 | 670 |
return true; |
Also available in: Unified diff
! wb::mail added message on error if DEBUG is set