mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-18 18:46:17 +00:00
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:
parent
cc358c225e
commit
289f5ac21c
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue