# HG changeset patch # User Dan # Date 1205873816 14400 # Node ID 459a447d7e792d3401b95c7cbae671cc393b5cca # Parent 586fd7d3202d91cb5e17bac06862d35342bd21bb Fixed auto-detection of URL scheme, didn't work unless rewriting worked diff -r 586fd7d3202d -r 459a447d7e79 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' ) {