On the blog module, I am unable to get non-super-admin users to use inline editing, even with all blog related permissions checked.
I tried adding a 'blog, blog/edit, etc.' group of permissions, but that didn't do it.
In the module code I see ```<?=fuel_edit($post)?>```, so nothing to suggest that it is intentionally limited to the super-admin.
Thoughts?
Comments
Thanks for the note about the bug fix in the update.
echo fuel_edit('create', 'blog/posts');
<?=fuel_edit('create', 'Create Post', 'blog/posts')?>
The Super Admin is able to see the create button, but not a user with the 'Blog Posts: Create' permission.
<?=fuel_edit('create', 'Create Post', 'blog/posts')?>
Also, it looks like you've identified a bug. I've posted a fix in the develop branch for you to test out.