aboutsummaryrefslogtreecommitdiff
path: root/js/tests/ElggLibTest.js
diff options
context:
space:
mode:
authorPaweł Sroka <srokap@gmail.com>2012-11-26 21:16:04 +0100
committerPaweł Sroka <srokap@gmail.com>2012-11-26 21:16:04 +0100
commit6c4e75b19ddadaadac9bc78423a837045fa90b15 (patch)
tree990c9b219f544f59722476758117d5971eeee94a /js/tests/ElggLibTest.js
parent19c6da97ed0178592b9041946f3463f9008dd7ea (diff)
downloadelgg-6c4e75b19ddadaadac9bc78423a837045fa90b15.tar.gz
elgg-6c4e75b19ddadaadac9bc78423a837045fa90b15.tar.bz2
Fixes #4927 - Removes obsolete commas in JS code for IE7 compatibility
Diffstat (limited to 'js/tests/ElggLibTest.js')
-rw-r--r--js/tests/ElggLibTest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/ElggLibTest.js b/js/tests/ElggLibTest.js
index a29ebf743..2a676e22a 100644
--- a/js/tests/ElggLibTest.js
+++ b/js/tests/ElggLibTest.js
@@ -99,7 +99,7 @@ ElggLibTest.prototype.testNormalizeUrl = function() {
['/mod/plugin/file.php', elgg.config.wwwroot + 'mod/plugin/file.php'],
['/mod/plugin/file.php?p=v&p2=v2', elgg.config.wwwroot + 'mod/plugin/file.php?p=v&p2=v2'],
['/rootfile.php', elgg.config.wwwroot + 'rootfile.php'],
- ['/rootfile.php?p=v&p2=v2', elgg.config.wwwroot + 'rootfile.php?p=v&p2=v2'],
+ ['/rootfile.php?p=v&p2=v2', elgg.config.wwwroot + 'rootfile.php?p=v&p2=v2']
].forEach(function(args) {
assertEquals(args[1], elgg.normalize_url(args[0]));