diff --git a/bin/trackers/Tracker_Term.py b/bin/trackers/Tracker_Term.py index e02a2464..a0986bdf 100755 --- a/bin/trackers/Tracker_Term.py +++ b/bin/trackers/Tracker_Term.py @@ -119,7 +119,6 @@ class Tracker_Term(AbstractModule): for term_uuid in uuid_list: tracker_sources = Tracker.get_tracker_uuid_sources(term_uuid) if not tracker_sources or item_source in tracker_sources: - print(not tracker_sources or item_source in tracker_sources) Tracker.add_tracked_item(term_uuid, item_id) tags_to_add = Term.get_term_tags(term_uuid) diff --git a/var/www/modules/PasteSubmit/Flask_PasteSubmit.py b/var/www/modules/PasteSubmit/Flask_PasteSubmit.py index c6816346..b4bf016c 100644 --- a/var/www/modules/PasteSubmit/Flask_PasteSubmit.py +++ b/var/www/modules/PasteSubmit/Flask_PasteSubmit.py @@ -273,7 +273,7 @@ def submit(): #paste_name = request.form['paste_name'] logger.debug('submit') - password = request.form['password'] + password = request.form['archive_pass'] ltags = request.form['tags_taxonomies'] ltagsgalaxies = request.form['tags_galaxies'] paste_content = request.form['paste_content'] diff --git a/var/www/modules/PasteSubmit/templates/submit_items.html b/var/www/modules/PasteSubmit/templates/submit_items.html index 8e19a042..80234465 100644 --- a/var/www/modules/PasteSubmit/templates/submit_items.html +++ b/var/www/modules/PasteSubmit/templates/submit_items.html @@ -129,7 +129,7 @@ - +
@@ -195,7 +195,7 @@
-
@@ -262,7 +262,8 @@ ltags = $('#ltags').tagSuggest({ data: data, maxDropHeight: 200, - name: 'ltags' + name: 'ltags', + emptyText: 'Add Taxonomies Tags', }); }); @@ -272,7 +273,8 @@ ltagsgalaxies = $('#ltagsgalaxies').tagSuggest({ data: data, maxDropHeight: 200, - name: 'ltagsgalaxies' + name: 'ltagsgalaxies', + emptyText: 'Add Galaxies Tags', }); });