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?
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | term_permissions-save_to_db-1904276-5.patch | 1.25 KB | andreymaximov |
Comments
Comment #1
alexpiaz commentedI 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.
Comment #2
Nightwalker3000 commentedThx #2 Worked for me
Comment #3
mbutelman commented#1 worked for me!
Comment #4
matthiasm11 commented#1 fixed the issue, thanks.
Comment #5
andreymaximov commentedAs described by #1
Comment #6
dadaisme commented#1 worked
Thx.
Comment #7
berliner commentedSeems to be RTBC
Comment #8
blauerberg commented#5 worked for me, thanks!.
Comment #9
janadam# 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.
Comment #10
skin#1 and #5 works for me, thanks.
Any official update on this module?
Comment #11
jomarocas commentedYes #5 worked for me, please apply for next release
Comment #12
jomarocas commentedThis iisue is update to patch to be ported
Comment #13
roborn commentedCorrect status is RTBC.
Comment #15
roborn commented