diff --git a/apps/documents/urls.py b/apps/documents/urls.py index 33f8c3fac6..51db9c5cb2 100755 --- a/apps/documents/urls.py +++ b/apps/documents/urls.py @@ -20,7 +20,7 @@ urlpatterns = patterns('documents.views', url(r'^document/(?P\d+)/thumbnail/$', 'get_document_image', {'size':THUMBNAIL_SIZE}, 'document_thumbnail'), url(r'^document/(?P\d+)/display/$', 'get_document_image', {'size':DISPLAY_SIZE}, 'document_display'), url(r'^document/(?P\d+)/download/$', 'document_download', (), 'document_download'), - url(r'^document/(?P\d+)/create/siblings/$', 'document_create_sibling', {'multiple':True}, 'document_create_sibling'), + url(r'^document/(?P\d+)/create/siblings/$', 'document_create_sibling', {'multiple':False}, 'document_create_sibling'), url(r'^staging_file/(?P\w+)/preview/$', 'staging_file_preview', (), 'staging_file_preview'), )