Fixed auto-detection of URL scheme, didn't work unless rewriting worked
authorDan
Tue, 18 Mar 2008 16:56:56 -0400
changeset 508 459a447d7e79
parent 507 586fd7d3202d
child 509 175df10e0b56
Fixed auto-detection of URL scheme, didn't work unless rewriting worked
install/includes/stages/website.php
--- a/install/includes/stages/website.php	Tue Mar 18 14:32:40 2008 -0400
+++ b/install/includes/stages/website.php	Tue Mar 18 16:56:56 2008 -0400
@@ -34,7 +34,7 @@
   }
   var __ajaxMrwTest_chain_rewrite = function()
   {
-    if ( ajax.readyState == 4 && ajax.status == 200 )
+    if ( ajax.readyState == 4 )
     {
       if ( ajax.responseText == 'good_rewrite' )
       {
@@ -48,7 +48,7 @@
   }
   var __ajaxMrwTest_chain_shortened = function()
   {
-    if ( ajax.readyState == 4 && ajax.status == 200 )
+    if ( ajax.readyState == 4 )
     {
       if ( ajax.responseText == 'good_shortened' )
       {
@@ -62,7 +62,7 @@
   }
   var __ajaxMrwTest_chain_standard = function()
   {
-    if ( ajax.readyState == 4 && ajax.status == 200 )
+    if ( ajax.readyState == 4 )
     {
       if ( ajax.responseText == 'good_standard' )
       {