Skip to content

Commit

Permalink
[BZ]TimeZone is not passed to ScriptContext(T56886)
Browse files Browse the repository at this point in the history
  • Loading branch information
gliu committed Mar 5, 2013
1 parent 6102c30 commit 956ee36
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -366,6 +366,12 @@ private void initializeScriptContext( )
if ( locale != null )
{
scriptContext.setLocale( locale );
}

TimeZone timeZone = getTimeZone( );
if ( timeZone != null )
{
scriptContext.setTimeZone( timeZone );
}

// create script context used to execute the script statements
Expand Down

0 comments on commit 956ee36

Please sign in to comment.