Commit da4b97ac authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

ignore filters with Internal flag.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk/utils@42567 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 63b32c51
......@@ -124,7 +124,7 @@ class MimeMapper(object):
# UsesOptions (deprecated):0x80, Default:0x100,
# NotInFileDialog:0x1000, NotInChooser:0x2000,
# ThirdParty:0x80000, Preferred:0x10000000
if not flag & 0x02 or flag & 0x1000 or flag & 0x2000:
if not flag & 0x02 or flag & 0x08 or flag & 0x1000 or flag & 0x2000:
continue
ui_name = value.get('UIName')
filter_type = value.get('Type')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment