Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions common/js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ if(typeof window.XE == "undefined") {
}
}

return normailzeUri(uri).toString();
return normalizeUri(uri).toString();
};

/**
Expand All @@ -333,7 +333,7 @@ if(typeof window.XE == "undefined") {
};
}

function normailzeUri(uri) {
function normalizeUri(uri) {
var query = uri.search(true);
var filename = uri.filename() || 'index.php';
var protocol = (global.enforce_ssl === true) ? 'https' : 'http';
Expand Down
4 changes: 2 additions & 2 deletions common/js/xe.js
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ if(typeof window.XE == "undefined") {
}
}

return normailzeUri(uri).toString();
return normalizeUri(uri).toString();
};

/**
Expand All @@ -1311,7 +1311,7 @@ if(typeof window.XE == "undefined") {
};
}

function normailzeUri(uri) {
function normalizeUri(uri) {
var query = uri.search(true);
var filename = uri.filename() || 'index.php';
var protocol = (global.enforce_ssl === true) ? 'https' : 'http';
Expand Down