diff options
| author | xue <> | 2006-02-09 21:23:51 +0000 | 
|---|---|---|
| committer | xue <> | 2006-02-09 21:23:51 +0000 | 
| commit | 261cdaa7b996ba910fddb883f892aa5b0b15a470 (patch) | |
| tree | 5f433609513376bc22bea10766d78327a39bc333 | |
| parent | 78c3c01a73ea6646f5d866b34e64365712e4b598 (diff) | |
Fixed a bug of mainmenu url.
| -rw-r--r-- | demos/quickstart/protected/controls/Layout.php | 2 | 
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.='¬heme=true';
  		$this->PrinterLink->NavigateUrl=$url;
  | 
