Closed (fixed)
Project:
Taxonomy Term Permissions
Version:
7.x-1.0-beta2
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
31 Jan 2013 at 13:34 UTC
Updated:
25 Mar 2016 at 14:51 UTC
Jump to comment: Most recent, Most recent file
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