You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/04/29 01:07:05 UTC

git commit: [flex-sdk] - Fixed to add generated timestring to returned result

Updated Branches:
  refs/heads/develop 30f2dab30 -> e06283e81


Fixed to add generated timestring to returned result


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e06283e8
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e06283e8
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e06283e8

Branch: refs/heads/develop
Commit: e06283e81f0e079267ea1b59ec10efbf5311af54
Parents: 30f2dab
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Apr 29 09:06:45 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Apr 29 09:06:45 2013 +1000

----------------------------------------------------------------------
 .../framework/src/mx/formatters/DateBase.as        |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e06283e8/frameworks/projects/framework/src/mx/formatters/DateBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/formatters/DateBase.as b/frameworks/projects/framework/src/mx/formatters/DateBase.as
index b731371..50c9aeb 100644
--- a/frameworks/projects/framework/src/mx/formatters/DateBase.as
+++ b/frameworks/projects/framework/src/mx/formatters/DateBase.as
@@ -584,6 +584,8 @@ public class DateBase
 				if (offset >= 0)
 					tzStr = "+" + tzStr;
 				
+				result += tzStr;
+				
 				return result;
 			}
         }