From 194a6bc74028eca3f38df2bac155cb9988130e0f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 13 Dec 2005 22:08:59 +0000 Subject: [PATCH] * (bug 4258) Use ugly urls for ISAPI by default patch by Rob Church --- RELEASE-NOTES | 2 ++ config/index.php | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 37253c320e..183e4f50bc 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/config/index.php b/config/index.php index 21207d5d4b..b660c2dcda 100644 --- a/config/index.php +++ b/config/index.php @@ -260,14 +260,15 @@ case "apache": case "apache2handler": print "ok, using pretty URLs (index.php/Page_Title)"; break; +default: + print "unknown; "; case "cgi": case "cgi-fcgi": case "apache2filter": +case "isapi": print "using ugly URLs (index.php?title=Page_Title)"; $conf->prettyURLs = false; break; -default: - print "unknown; using pretty URLs (index.php/Page_Title), if you have trouble change this in LocalSettings.php"; } print "\n"; -- 2.20.1