summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--demos/quickstart/protected/controls/Layout.php2
-rw-r--r--framework/Web/UI/TClientScriptManager.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/controls/Layout.php b/demos/quickstart/protected/controls/Layout.php
index d58cabfa..7c2cbd85 100644
--- a/demos/quickstart/protected/controls/Layout.php
+++ b/demos/quickstart/protected/controls/Layout.php
@@ -16,7 +16,7 @@ class Layout extends TTemplateControl
if(strpos($url,'?')===false)
$url.='?notheme=true';
else
- $url.='&notheme=true';
+ $url.='&notheme=true';
$this->PrinterLink->NavigateUrl=$url;
if(isset($this->Request['notheme']))
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php
index 015ef1c1..8962f270 100644
--- a/framework/Web/UI/TClientScriptManager.php
+++ b/framework/Web/UI/TClientScriptManager.php
@@ -150,7 +150,7 @@ class TClientScriptManager extends TApplicationComponent
$scriptLoader=$basePath.'/'.self::SCRIPT_LOADER;
$url=$this->publishFilePath($scriptLoader).'?js='.trim($files,',');
if($this->getApplication()->getMode()===TApplication::STATE_DEBUG)
- $url.='&__nocache';
+ $url.='&__nocache';
$writer->write(TJavaScript::renderScriptFile($url));
}
}