i have works content model and bahaviors (/app/model/behaviors/
[multivalidatable, who_did_it])
<?php
class Content extends AppModel {
public $name = 'Content';
public $actsAs = array('Multivalidatable', 'WhoDidIt');
[...]
so when im put content model to a contents plugin my general behaviors
stop work
<?php
class Content extends ContentsAppModel {
public $name = 'Content';
public $actsAs = array('Multivalidatable', 'WhoDidIt');
[...]
behaviors nothing change in save data...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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
-~----------~----~----~----~------~----~------~--~---