ソースを参照

fixed a function where a variable needed to be global in order to be used corrently (this was in the timezone offset fix for unix)

gpadgham 25 年 前
コミット
45005e6dbf
1 ファイル変更2 行追加0 行削除
  1. 2 0
      functions/smtp.php

+ 2 - 0
functions/smtp.php

@@ -97,6 +97,8 @@
 
    /* Time offset for correct timezone */
    function timezone () {
+      global $invert_time;
+      
       $diff_second = date("Z");
       if ($invert_time)
           $diff_second = - $diff_second;