MDL-12596 Timezone problem in PHPMailer RFCDate() Function - patch submitted by Leo Gaggl; merged from MOODLE_19_STABLE

This commit is contained in:
skodak
2007-12-16 14:50:58 +00:00
parent fe362e1aca
commit 5afdebff2e
2 changed files with 11 additions and 2 deletions
+10 -1
View File
@@ -7,8 +7,17 @@ Moodle-specific changes to phpmailer are tracked here.
Date: 14 Feb 2007
Reason: http://tracker.moodle.org/browse/MDL-3681
lib/phpmailer/class.phpmailer.php
Changed by skodak
Date 12 Mar 2007
Reason: support for gb18030
Reason: support for gb18030
lib/phpmailer/class.phpmailer.php
Changed by skodak
Date 15 Dec 2007
Reason: MDL-12596 - correct timezone in date
+1 -1
View File
@@ -1469,7 +1469,7 @@ class PHPMailer
$tz = date("Z");
$tzs = ($tz < 0) ? "-" : "+";
$tz = abs($tz);
$tz = ($tz/3600)*100 + ($tz%3600)/60;
$tz = (($tz - ($tz%3600) )/3600)*100 + ($tz%3600)/60; // moodle change - MDL-12596
$result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
return $result;