diff --git a/deluge/ui/webui/pages.py b/deluge/ui/webui/pages.py index ab854051a..bd8ba584d 100644 --- a/deluge/ui/webui/pages.py +++ b/deluge/ui/webui/pages.py @@ -106,7 +106,8 @@ class index: #organize-filters label_filters = {} - if 'label' in [pl.lower() for pl in proxy.get_enabled_plugins()]: + #disable label plugin for now.. + if False and 'label' in [pl.lower() for pl in proxy.get_enabled_plugins()]: filter_dict = {} if vars.filter_cat and vars.filter_value and vars.filter_value <> "All": filter_dict = {vars.filter_cat:vars.filter_value} diff --git a/deluge/ui/webui/templates/white/part_label_filters.html b/deluge/ui/webui/templates/white/part_label_filters.html index 33c48d912..2bd6aff11 100644 --- a/deluge/ui/webui/templates/white/part_label_filters.html +++ b/deluge/ui/webui/templates/white/part_label_filters.html @@ -23,7 +23,7 @@ $if get('filter_cat') == "keyword": -$for cat in ["state", "tracker", "label"]: +$for cat in ["state", "tracker_host", "label"]: