]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
I originally checked in the wrong patch for Bug 351178. Here are the
authormkanat%bugzilla.org <>
Sat, 30 Sep 2006 06:47:06 +0000 (06:47 +0000)
committermkanat%bugzilla.org <>
Sat, 30 Sep 2006 06:47:06 +0000 (06:47 +0000)
checkin fixes for that bug.

Bugzilla/WebService/Bugzilla.pm

index dfab698453bd3d94d7a4d991080d6de5c2e796d5..698dabbe806d6a0e149d456f55d5b90c96e9ab75 100755 (executable)
@@ -31,7 +31,7 @@ sub timezone {
     my $offset = tz_offset();
     $offset = (($offset / 60) / 60) * 100;
     $offset = sprintf('%+05d', $offset);
-    return 'GMT' . $offset;
+    return $offset;
 }
 
 1;
@@ -64,8 +64,8 @@ Returns the current version of Bugzilla, as a string.
 
 =item C<timezone>
 
-Returns the timezone of the server Bugzilla is running on, in GMT(+/-)XXXX 
-format. This is important because all dates/times that the webservice
-interface returns will be in this timezone.
+Returns the timezone of the server Bugzilla is running on, in (+/-)XXXX
+(RFC 2822) format. This is important because all dates/times that the
+webservice interface returns will be in this timezone.
 
 =back