I have it installed with several other modules.
The filter is working, but I have to write the id's directly into the database, the form does not do.

Is there any setting which can prevent the admin user to save the data?

Comments

alexpiaz’s picture

I was with the same problem and after looking at the code for a while I think I have found the issue.

#215
if (!empty($form_state['values']['access']['user']) && $form_state['values']['op']== 'Save')

should be

if (!empty($form_state['values']['access']['user']) && $form_state['values']['op']== t('Save'))

#232
if (!empty($form_state['values']['access']['role']) && $form_state['values']['op'] == 'Save')

should be
if (!empty($form_state['values']['access']['role']) && $form_state['values']['op'] == t('Save'))

I just did a quick fix, will make a patch later and submit it.

Nightwalker3000’s picture

Thx #2 Worked for me

mbutelman’s picture

#1 worked for me!

matthiasm11’s picture

#1 fixed the issue, thanks.

andreymaximov’s picture

As described by #1

dadaisme’s picture

#1 worked

Thx.

berliner’s picture

Issue summary: View changes
Status: Active » Reviewed & tested by the community

Seems to be RTBC

blauerberg’s picture

#5 worked for me, thanks!.

janadam’s picture

# worked for rc2, but I had to apply it manually.
Also term reference tree and simple hierarchical select modules seems to ignore these permissions, so their widgets are showing all terms regardless of permissions set.

skin’s picture

#1 and #5 works for me, thanks.

Any official update on this module?

jomarocas’s picture

Yes #5 worked for me, please apply for next release

jomarocas’s picture

Status: Reviewed & tested by the community » Patch (to be ported)

This iisue is update to patch to be ported

roborn’s picture

Status: Patch (to be ported) » Reviewed & tested by the community

Correct status is RTBC.

  • roborn committed 77b3e0c on 7.x-1.x
    Issue #1904276 by AndreyMaximov, alexpiaz, jepSter, MiSc: Does not save...
roborn’s picture

Title: does not save to database » Does not save permissions in non-English language
Status: Reviewed & tested by the community » Closed (fixed)