Hi,

Thanks for the really quick response - much appreciated. I will work
on that bit of code and see what happens.

Many thanks again, Ian

On 5 Feb, 12:46, "Larry E. Masters aka PhpNut" <[EMAIL PROTECTED]>
wrote:
> I suggest you override it at the model level, this is possible...
>
> In the model that is not working as it was before add this code.
>
>     function loadInfo() {
>         $db =& ConnectionManager::getDataSource($this->useDbConfig);
>
>         if (!is_object($this->_tableInfo) &&
> $db->isInterfaceSupported('describe')) {
>             uses('neat_array');
>             $this->_tableInfo = new NeatArray($db->describe($this));
>         }
>         return $this->_tableInfo;
>     }
>
> The original method was changed to fix bugs, not break user land code...
>
> --
> /**
> * @author Larry E. Masters
> * @var string $userName
> * @param string $realName
> * @returns string aka PhpNut
> * @access  public
> */


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to