summaryrefslogtreecommitdiff
path: root/framework/TPropertyValue.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/TPropertyValue.php')
-rw-r--r--framework/TPropertyValue.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/TPropertyValue.php b/framework/TPropertyValue.php
index 8c106f82..89b7f06c 100644
--- a/framework/TPropertyValue.php
+++ b/framework/TPropertyValue.php
@@ -15,7 +15,7 @@
namespace Prado;
use Prado\Exceptions\TInvalidDataValueException;
-use Prado\Web\Javascripts\TJavascript;
+use Prado\Web\Javascripts\TJavaScript;
/**
* TPropertyValue class
@@ -76,7 +76,7 @@ class TPropertyValue
*/
public static function ensureString($value)
{
- if (TJavascript::isJsLiteral($value))
+ if (TJavaScript::isJsLiteral($value))
return $value;
if (is_bool($value))
return $value?'true':'false';