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

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

parent 94db6a9e
No related branches found
No related tags found
No related merge requests found
......@@ -438,7 +438,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