Skip to content
Snippets Groups Projects
Commit 3b512923 authored by dooug's avatar dooug Committed by Chris Leppanen
Browse files

Issue #1156982 by dooug, dotman: Fixed SQLSTATE[HY000]: General error: 1366...

Issue #1156982 by dooug, dotman: Fixed SQLSTATE[HY000]: General error: 1366 Incorrect integer value: '' for column 'last_comment_uid()' at row 1.
parent 1cf6f930
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,15 @@ class FeedsNodeProcessor extends FeedsProcessor {
}
}
/**
* Validates a node.
*/
protected function entityValidate($entity) {
if (empty($entity->uid)) {
$entity->uid = $this->config['author'];
}
}
/**
* Save a node.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment