summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/controls/Layout.php
diff options
context:
space:
mode:
authorxue <>2006-02-09 21:23:51 +0000
committerxue <>2006-02-09 21:23:51 +0000
commit261cdaa7b996ba910fddb883f892aa5b0b15a470 (patch)
tree5f433609513376bc22bea10766d78327a39bc333 /demos/quickstart/protected/controls/Layout.php
parent78c3c01a73ea6646f5d866b34e64365712e4b598 (diff)
Fixed a bug of mainmenu url.
Diffstat (limited to 'demos/quickstart/protected/controls/Layout.php')
-rw-r--r--demos/quickstart/protected/controls/Layout.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/quickstart/protected/controls/Layout.php b/demos/quickstart/protected/controls/Layout.php
index 21eb764e..d58cabfa 100644
--- a/demos/quickstart/protected/controls/Layout.php
+++ b/demos/quickstart/protected/controls/Layout.php
@@ -14,7 +14,7 @@ class Layout extends TTemplateControl
parent::onLoad($param);
$url=$this->Request->RequestUri;
if(strpos($url,'?')===false)
- $url.='index.php?notheme=true';
+ $url.='?notheme=true';
else
$url.='&notheme=true';
$this->PrinterLink->NavigateUrl=$url;