Commit a68e8de3a22f453b6c7a7ca5674bda11be62d732

Authored by Bartłomiej Nitoń
2 parents 9c1f2964 7104a9b3

Merge branch 'bartek'

dictionary/ajax_lemma_status.py
... ... @@ -58,7 +58,8 @@ def semantic_status_changes(user, selected_lemma):
58 58 if (user.has_perm('dictionary.add_semantic_frames') and
59 59 selected_lemma.status.type.sym_name != 'checked_s' and
60 60 selected_lemma.vocabulary.editors.filter(id=user.id).exists() and
61   - (selected_lemma.semanticist == user or selected_lemma.status.type.sym_name == 'checked_f')):
  61 + (selected_lemma.semanticist == user or selected_lemma.status.type.sym_name == 'checked_f' or
  62 + selected_lemma.status.type.sym_name == 'checked')):
62 63 semantic_change = True
63 64 return semantic_change
64 65  
... ...