diff --git a/interfaces/Config/templates/config_switches.tmpl b/interfaces/Config/templates/config_switches.tmpl
index e399fdf..9f243ba 100644
--- a/interfaces/Config/templates/config_switches.tmpl
+++ b/interfaces/Config/templates/config_switches.tmpl
@@ -269,11 +269,6 @@
-
- 0 then 'checked="checked"' else ""#--> />
- $T('explain-enable_meta')
-
-
diff --git a/sabnzbd/interface.py b/sabnzbd/interface.py
index 555db4c..4c89c3d 100644
--- a/sabnzbd/interface.py
+++ b/sabnzbd/interface.py
@@ -1411,7 +1411,7 @@ SWITCH_LIST = \
'quota_size', 'quota_day', 'quota_resume', 'quota_period',
'pre_check', 'max_art_tries', 'max_art_opt', 'fail_hopeless_jobs', 'enable_all_par',
'enable_recursive', 'no_series_dupes', 'script_can_fail', 'new_nzb_on_failure',
- 'unwanted_extensions', 'action_on_unwanted_extensions', 'enable_meta', 'sanitize_safe',
+ 'unwanted_extensions', 'action_on_unwanted_extensions', 'sanitize_safe',
'rating_enable', 'rating_host', 'rating_api_key', 'rating_feedback', 'rating_filter_enable',
'rating_filter_abort_audio', 'rating_filter_abort_video', 'rating_filter_abort_encrypted',
'rating_filter_abort_encrypted_confirm', 'rating_filter_abort_spam', 'rating_filter_abort_spam_confirm',
@@ -1479,7 +1479,7 @@ class ConfigSwitches(object):
##############################################################################
SPECIAL_BOOL_LIST = \
- ('start_paused', 'no_penalties', 'ignore_wrong_unrar', 'create_group_folders',
+ ('start_paused', 'no_penalties', 'ignore_wrong_unrar', 'create_group_folders', 'enable_meta',
'queue_complete_pers', 'quick_check', 'api_warnings', 'allow_64bit_tools', 'ampm',
'enable_unrar', 'enable_unzip', 'enable_7zip', 'enable_filejoin', 'enable_tsjoin',
'prospective_par_download', 'never_repair', 'allow_streaming', 'ignore_unrar_dates',
diff --git a/sabnzbd/skintext.py b/sabnzbd/skintext.py
index f5613f7..307cc5b 100644
--- a/sabnzbd/skintext.py
+++ b/sabnzbd/skintext.py
@@ -445,8 +445,6 @@ SKIN_TEXT = {
'explain-script_can_fail' : TT('When the user script returns a non-zero exit code, the job will be flagged as failed.'),
'opt-new_nzb_on_failure' : TT('On failure, try alternative NZB'),
'explain-new_nzb_on_failure' : TT('Some servers provide an alternative NZB when a download fails.'),
- 'opt-enable_meta' : TT('Use tags from indexer'),
- 'explain-enable_meta' : TT('Use tags from indexer for title, season, episode, etc. Otherwise all naming is derived from the NZB name.'),
'opt-folder_rename' : TT('Enable folder rename'),
'explain-folder_rename' : TT('Use temporary names during post processing. Disable when your system doesn\'t handle that properly.'),
'opt-pre_script' : TT('Pre-queue user script'),