neatArray class renamed to NeatArray

git-svn-id: https://svn.cakephp.org/repo/trunk/cake@124 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2005-05-17 02:41:13 +00:00
parent cc358c225e
commit 289f5ac21c
2 changed files with 4 additions and 4 deletions

View file

@ -272,15 +272,15 @@ if (!function_exists('array_combine')) {
* @since Cake v 0.2.9 * @since Cake v 0.2.9
* *
*/ */
class neatArray { class NeatArray {
/** /**
* Enter description here... * Enter description here...
* *
* @param unknown_type $value * @param unknown_type $value
* @return neatArray * @return NeatArray
*/ */
function neatArray ($value) { function NeatArray ($value) {
$this->value = $value; $this->value = $value;
} }

View file

@ -269,7 +269,7 @@ class Model extends Object {
*/ */
function load_info () { function load_info () {
if (empty($this->_table_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));
} }
/** /**