License "all rights reserved" default should be None/NULL, not empty string
This commit is contained in:
@@ -69,7 +69,7 @@ def submit_start(request):
|
||||
entry.description_html = cleaned_markdown_conversion(
|
||||
entry.description)
|
||||
|
||||
entry.license = unicode(request.POST.get('license', ''))
|
||||
entry.license = unicode(request.POST.get('license', "")) or None
|
||||
|
||||
entry.uploader = request.user._id
|
||||
|
||||
|
||||
Reference in New Issue
Block a user