소스 검색

fixed problems I introduced in previous version of date.php

Luke Ehresman 25 년 전
부모
커밋
f0c8e588d3
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 5
      functions/date.php

+ 0 - 5
functions/date.php

@@ -67,10 +67,6 @@
       else if ($gmt == "MET DST" || $gmt == "METDST")
          $gmt = "+0200";
       
-      if ($gmt = "")
-         $gmt = "+0000";
-
-      /*
       if (substr($gmt, 0, 1) == "-") {
          $neg = true;
          $gmt = substr($gmt, 1, strlen($gmt));
@@ -86,7 +82,6 @@
          $gmt = "-$gmt";
       else
          $gmt = "+$gmt";
-      */
 
       /** now find what the server is at **/
       $current = date("Z", time());