diff options
author | ctrlaltca@gmail.com <> | 2012-03-24 22:52:29 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-03-24 22:52:29 +0000 |
commit | 76d7735f8de76dfc4fa0ff671e5f18ae025bbcf3 (patch) | |
tree | aa7e542d5aeeb4d9a09769cc3beb45d6aaf180fe /framework/Web/UI/TClientScriptManager.php | |
parent | fd1a685c494bc183adae9b1748ee79e66c4ff7c2 (diff) |
Committer 2nd part of patch for #391
Diffstat (limited to 'framework/Web/UI/TClientScriptManager.php')
-rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 1804c9d1..3f1664ac 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -800,8 +800,8 @@ abstract class TClientSideOptions extends TComponent */ protected function setFunction($name, $code) { - if(!TJavaScript::isFunction($code)) - $code = TJavaScript::quoteFunction($this->ensureFunction($code)); + if(!TJavaScript::isJsLiteral($code)) + $code = TJavaScript::quoteJsLiteral($this->ensureFunction($code)); $this->setOption($name, $code); } |