diff options
author | David <ottodavid@gmx.net> | 2015-08-11 18:32:09 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-08-11 18:32:09 +0200 |
commit | cbc337ced4cba058fc1ed38a6b01d7c4e6677c17 (patch) | |
tree | 5eeb104e4d7b33394a7577b37d5194b188496c33 /framework/Data | |
parent | 606874e9a883ae547df198498fce6fca7b735466 (diff) |
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.
Diffstat (limited to 'framework/Data')
-rw-r--r-- | framework/Data/SqlMap/DataMapper/TSqlMapException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/SqlMap/DataMapper/TSqlMapException.php b/framework/Data/SqlMap/DataMapper/TSqlMapException.php index 65ee6d18..7a30b328 100644 --- a/framework/Data/SqlMap/DataMapper/TSqlMapException.php +++ b/framework/Data/SqlMap/DataMapper/TSqlMapException.php @@ -31,7 +31,7 @@ class TSqlMapException extends TException $tokens=array(); for($i=0;$i<$n;++$i) { - if($args[$i] instanceof SimpleXmlElement) + if($args[$i] instanceof SimpleXMLElement) $tokens['{'.$i.'}']=$this->implodeNode($args[$i]); else $tokens['{'.$i.'}']=TPropertyValue::ensureString($args[$i]); |