Skip to content
Snippets Groups Projects
Commit ae6037f5 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

ImporterMappingFunction: iDocument used wrong variable for the "Keywords" property

parent d019872b
No related branches found
No related tags found
No related merge requests found
......@@ -436,7 +436,7 @@ function iDocument(pObject)
var desc = "";
if(pObject.Description != undefined) desc = this.InputRecord[pObject.Description];
var keyw = "";
if(pObject.Keywords != undefined) desc = this.InputRecord[pObject.Keywords];
if(pObject.Keywords != undefined) keyw = this.InputRecord[pObject.Keywords];
if(pObject.Rowid != "" && pObject.Filename != "")
db.insertBinary(
......
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