Sluggable Behavior 1.1.36 released
Sluggable Behavior 1.1.36 has just been released and is available for immediate download on Cake Syrup download page. This release introduces some small fixes, it adds support for character translation tables, and adds more test cases for better test coverage. Go to the Sluggable Behavior page to learn more about this behavior.

2 Comments
Hi,
I’m building an RSS publisher plug-in for Cake 1.2. I added sluggable to app/plugins/blog/model/behaviors. I also added actsAs(’sluggable’) to the article model. When I call $this->Article->save(….), the save works but the slug is not generated or saved to the DB.
Is it impossible to use behaviors in plugins?
Thank you,
Guy
@Guy: when you want to use a behavior that resides in a plugin you need to prepend its name with the plugin name, using dot notation:
var $actsAs = array(’plugin.Sluggable’);
RSS feed for comments on this post. - TrackBack URL
Leave a comment