diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-09 00:09:44 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-09 00:09:44 +0000 |
commit | d9e5cda35d466ac1a428fffb72cc142922d4c211 (patch) | |
tree | aef5c7bb663b51564a0f8d95f43930943ab8b21d /js/util.js | |
parent | 67cb99c4428f71a19187ccc0b8ac6ad0f129b325 (diff) |
Removed 404 test
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js index 44c3002cd..23abba6c2 100644 --- a/js/util.js +++ b/js/util.js @@ -178,7 +178,7 @@ $(document).ready(function(){ $('#form_notice').append(document._importNode($(".error", xhr.responseXML).get(0), true)); } else { - var HTTP20x30x = [200, 404, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307]; + var HTTP20x30x = [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307]; if(jQuery.inArray(parseInt(xhr.status), HTTP20x30x) < 0) { alert("Sorry! We had trouble sending your notice ("+xhr.status+" "+xhr.statusText+"). Please report the problem to the site administrator if this happens again."); } |