fix(convert): le champs article.date dans spip doit prendre le champs node.created
This commit is contained in:
parent
ae576d1a38
commit
41e7200fc1
@ -308,7 +308,7 @@ def convert_node(node, options):
|
|||||||
|
|
||||||
article = None
|
article = None
|
||||||
article_attributes = {
|
article_attributes = {
|
||||||
'date': convert_timestamp(node.published_revision.timestamp),
|
'date': convert_timestamp(node.created),
|
||||||
'date_modif': convert_timestamp(node.changed),
|
'date_modif': convert_timestamp(node.changed),
|
||||||
'date_redac': convert_timestamp(node.created),
|
'date_redac': convert_timestamp(node.created),
|
||||||
'descriptif': sanitarize_html(
|
'descriptif': sanitarize_html(
|
||||||
|
Loading…
Reference in New Issue
Block a user