I found a small bug in cake\libs\controller\controller.php.
This line:
if(0 != strncmp( "created", $tabl['name'], 6 ) && 0
!= strncmp("modified",$tabl['name'], 8))
Should be:
if(0 != strncmp( "created", $tabl['name'], 7 ) && 0
!= strncmp("modified",$tabl['name'], 8))
I found it because a date field called "create_date" was not showing up
due to its type being null rather than "date". I renamed the field for now.
Thanks,
Eric
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---