diff --git a/libs/basics.php b/libs/basics.php index 8e266ddc1..d95f226b0 100644 --- a/libs/basics.php +++ b/libs/basics.php @@ -272,15 +272,15 @@ if (!function_exists('array_combine')) { * @since Cake v 0.2.9 * */ -class neatArray { +class NeatArray { /** * Enter description here... * * @param unknown_type $value - * @return neatArray + * @return NeatArray */ - function neatArray ($value) { + function NeatArray ($value) { $this->value = $value; } diff --git a/libs/model.php b/libs/model.php index 3ef338a05..acfa2aea9 100644 --- a/libs/model.php +++ b/libs/model.php @@ -269,7 +269,7 @@ class Model extends Object { */ function load_info () { if (empty($this->_table_info)) - $this->_table_info = new neatArray($this->db->fields($this->table)); + $this->_table_info = new NeatArray($this->db->fields($this->table)); } /**