Fix problem getting quotes from trustnet.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7870 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2003-01-22 01:23:57 +00:00
parent 4da35d35e5
commit 097e4451e3

View File

@ -230,8 +230,8 @@ sub schemify_quote {
if (($$quotehash{$itemname, $field})) { if (($$quotehash{$itemname, $field})) {
$data = schemify_string($$quotehash{$itemname, $field}); $data = schemify_string($$quotehash{$itemname, $field});
} else { } else {
# VWD quotes don't set the symbol # VWD and a few others don't set the symbol field
$data = $itemname; $data = schemify_string($itemname);
} }
$quotedata .= "($field . $data)"; $quotedata .= "($field . $data)";