Skip to content

Commit

Permalink
don't add '-' letter to abbreviated zone name
Browse files Browse the repository at this point in the history
  • Loading branch information
jannic committed Apr 2, 2010
1 parent 8336bb1 commit 2a55441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/date.js
Expand Up @@ -650,7 +650,7 @@ timezoneJS.timezone = new function() {
if (base.indexOf('%s') > -1) {
var repl;
if (rule) {
repl = rule[7];
repl = rule[7]=='-'?'':rule[7];
}
// FIXME: Right now just falling back to Standard --
// apparently ought to use the last valid rule,
Expand Down

0 comments on commit 2a55441

Please sign in to comment.