* (bug 4258) Use ugly urls for ISAPI by default
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 13 Dec 2005 22:08:59 +0000 (22:08 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 13 Dec 2005 22:08:59 +0000 (22:08 +0000)
  patch by Rob Church

RELEASE-NOTES
config/index.php

index 37253c3..183e4f5 100644 (file)
@@ -317,6 +317,8 @@ fully support the editing toolbar, but was found to be too confusing.
 * (bug 3407) Fix encoding of subject and from/to headers on notification
   mails; userMailer() now takes a MailAddress wrapper object instead of
   a raw string to abstract things a level.
+* (bug 4258) Use ugly urls for ISAPI by default
+  patch by Rob Church
 
 
 === Caveats ===
index 21207d5..b660c2d 100644 (file)
@@ -260,14 +260,15 @@ case "apache":
 case "apache2handler":
        print "ok, using pretty URLs (<tt>index.php/Page_Title</tt>)";
        break;
+default:
+       print "unknown; ";
 case "cgi":
 case "cgi-fcgi":
 case "apache2filter":
+case "isapi":
        print "using ugly URLs (<tt>index.php?title=Page_Title</tt>)";
        $conf->prettyURLs = false;
        break;
-default:
-       print "unknown; using pretty URLs (<tt>index.php/Page_Title</tt>), if you have trouble change this in <tt>LocalSettings.php</tt>";
 }
 print "</li>\n";