summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Bugzilla.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-09-30 08:47:06 +0200
committermkanat%bugzilla.org <>2006-09-30 08:47:06 +0200
commit875ec235470318578182308e1c22ea472c64b20d (patch)
treef078abd7cf0c4bb2d8d1a701b33c42564d873b14 /Bugzilla/WebService/Bugzilla.pm
parent65a9538ec79d1dcd1d903e38599d53f29676f39b (diff)
downloadbugzilla-875ec235470318578182308e1c22ea472c64b20d.tar.gz
bugzilla-875ec235470318578182308e1c22ea472c64b20d.tar.xz
I originally checked in the wrong patch for Bug 351178. Here are the
checkin fixes for that bug.
Diffstat (limited to 'Bugzilla/WebService/Bugzilla.pm')
-rwxr-xr-xBugzilla/WebService/Bugzilla.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/Bugzilla/WebService/Bugzilla.pm b/Bugzilla/WebService/Bugzilla.pm
index dfab69845..698dabbe8 100755
--- a/Bugzilla/WebService/Bugzilla.pm
+++ b/Bugzilla/WebService/Bugzilla.pm
@@ -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