diff options
Diffstat (limited to 'lib/models/SimpleORMapCollection.class.php')
| -rw-r--r-- | lib/models/SimpleORMapCollection.class.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/models/SimpleORMapCollection.class.php b/lib/models/SimpleORMapCollection.class.php index 6f10f21..ee7dfbb 100644 --- a/lib/models/SimpleORMapCollection.class.php +++ b/lib/models/SimpleORMapCollection.class.php @@ -110,8 +110,8 @@ class SimpleORMapCollection extends SimpleCollection */ public function setClassName($class_name) { - $this->relation_options['class_name'] = mb_strtolower($class_name); - $this->deleted->relation_options['class_name'] = mb_strtolower($class_name); + $this->relation_options['class_name'] = strtolower($class_name); + $this->deleted->relation_options['class_name'] = strtolower($class_name); } /** @@ -131,7 +131,7 @@ class SimpleORMapCollection extends SimpleCollection */ public function getClassName() { - return mb_strtolower($this->relation_options['class_name']); + return strtolower($this->relation_options['class_name']); } /** @@ -236,4 +236,4 @@ class SimpleORMapCollection extends SimpleCollection } $this->storage = array_values($this->storage); } -}
\ No newline at end of file +} |
