From 31c114db2c165876b27636d00a7d38c1ed41d862 Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Thu, 4 Mar 2010 21:10:33 -0800 Subject: [PATCH] Additional bustage fix for bug 545299. --- Bugzilla/WebService.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/WebService.pm b/Bugzilla/WebService.pm index bb77540cb9..6ff7518810 100644 --- a/Bugzilla/WebService.pm +++ b/Bugzilla/WebService.pm @@ -55,7 +55,7 @@ sub datetime_format_outbound { # passed in value is likely a string, create a datetime object $time = datetime_from($date, 'UTC'); } - return $iso_datetime = $time->iso8601(); + return $time->iso8601(); } -- 2.47.2