Little correction on content tag management.
--- a/src/ldt/ldt/ldt_utils/forms.py Mon Feb 06 15:03:43 2012 +0100
+++ b/src/ldt/ldt/ldt_utils/forms.py Mon Feb 06 15:17:25 2012 +0100
@@ -69,7 +69,7 @@
iriurl_data = "%s/%s.iri" % (iri_id_data, iri_id_data)
cleaned_data['iriurl'] = iriurl_data
# if needed, we add a comma to the tag list, to force comma separated list and enable tags with spaces.
- if ',' not in cleaned_data['tags'] :
+ if ',' not in cleaned_data['tags'] and cleaned_data['tags']!="" :
cleaned_data['tags'] = cleaned_data['tags'] + ','
return cleaned_data