Update 404.md

This commit is contained in:
johndmulhausen 2016-03-11 08:58:44 +00:00
parent 34568e075c
commit e935676c49
1 changed files with 1 additions and 1 deletions

2
404.md
View File

@ -10,7 +10,7 @@ $( document ).ready(function() {
var doRedirect=false;
var forwardingURL=window.location.href;
for (i=0;i<oldURLs.length;i++) {
if (window.location.href.indexOf(oldURLs[i]) > -1) {
if (window.location.href.indexOf(oldURLs[i])) > -1) {
doRedirect=true;
forwardingURL=forwardingURL.replace(oldURLs[i],"");
}