I'm using the slug observer in an Orm model, and it update slug when an object is updated with this call on my model
'Orm\Observer_Slug'
For the example if i create a post with the title "My great post", the slug will be 'my-great-post', no problem. But when the post is updated, the slug change for 'my-great-post-2'.
So is it a normal behavior to increment the slug on updating ? Or a bug, or i do something wrong ? Because i use slug in url and for evidents reasons, the slug jsut can't change everytime...
Ah, new information. Please try to be as precise as possible in your reports, it will save us both a lot of time.
Observer_Slug was never supported for any model other then the standard ORM model. I added support for Model_Temporal 25 days ago (which I think made 1.6.1), it still has no support for Model_Soft. I can see if I can add that.
Model_Soft comes with it's own Query class extension, that will inject a "WHERE yourdeletefield IS NULL" in every query generated. So that should work out of the box. Which Fuel version are you on?