You are probably victim of this bug :
http://groups.google.com/group/cake-php/browse_thread/thread/2ad48c4e10f58fc0/c7c4511051071b52
There are many threads here about problems with HABTM due to this bug.
I cannot understand why the cake home page still propose to download a
beta version containing this stupid error in a so important model.php.
Even the nightly contains this stupid bug, since almost 1 month. How
do we want to motivate people to learn Cake, if they spend hours and
hours to understand and solve a problem that is not a problem in their
code?
I don't understand...
JakeCake
------------------
in model.php
if (isset($v[$n])) {
$v = $v[$n];
}
$joined[$n] = $v;
But it should say:
if (isset($v[$n])) {
$v = $v[$n];
$joined[$n] = $v;
}
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---