From cbc337ced4cba058fc1ed38a6b01d7c4e6677c17 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 11 Aug 2015 18:32:09 +0200 Subject: Fixed class usage cases Class names are not case sensitive but file names are if you are running on an case sensitive file systems. Since class names map to file names, they need to be used case sensitive. --- framework/TPropertyValue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/TPropertyValue.php') 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'; -- cgit v1.2.3