From af72a948f6f965f4a4623e34f347abeb19da4db4 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Sun, 5 May 2013 09:07:51 -0400 Subject: [PATCH] Fixes issue #107: UrlManager::showScriptName default to false. --- framework/web/UrlManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/web/UrlManager.php b/framework/web/UrlManager.php index 318f329..329bf07 100644 --- a/framework/web/UrlManager.php +++ b/framework/web/UrlManager.php @@ -51,7 +51,7 @@ class UrlManager extends Component * @var boolean whether to show entry script name in the constructed URL. Defaults to true. * This property is used only if [[enablePrettyUrl]] is true. */ - public $showScriptName = true; + public $showScriptName = false; /** * @var string the GET variable name for route. This property is used only if [[enablePrettyUrl]] is false. */