This commit is contained in:
Fred Tempez 2018-04-04 21:20:50 +02:00
parent 10a936f33c
commit 81399c30c9
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ class blog extends common {
// Crée le commentaire
$commentId = helper::increment(uniqid(), $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'comment']));
$this->setData(['module', $this->getUrl(0), $this->getUrl(1), 'comment', $commentId, [
'author' => $this->getInput('blogArticleAuthor', helper::FILTER_STRING_SHORT, false),
'author' => $this->getInput('blogArticleAuthor', helper::FILTER_STRING_SHORT, empty($this->getInput('blogArticleUserId')) ? TRUE : FALSE),
'content' => $this->getInput('blogArticleContent', helper::FILTER_STRING_SHORT, true),
'createdOn' => time(),
'userId' => $this->getInput('blogArticleUserId'),