diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index f8c0022a..273b0938 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -902,7 +902,7 @@ Ox.URL = function(options) { } else if (type == 'integer') { value = Math.round(str) || 0; } else if (type == 'time') { - value = Ox.formatDurarion(Ox.parseDuration(value)); + value = Ox.formatDuration(Ox.parseDuration(value)); } else if (type == 'year') { value = Math.round(str) || 1970; }