Author: mcantelon
Date: Thu Feb 16 11:04:24 2012
New Revision: 10917
Log:
Fixed errors.
Modified:
trunk/lib/QubitFlatfileImport.class.php
Modified: trunk/lib/QubitFlatfileImport.class.php
==============================================================================
--- trunk/lib/QubitFlatfileImport.class.php Thu Feb 16 11:02:53 2012
(r10916)
+++ trunk/lib/QubitFlatfileImport.class.php Thu Feb 16 11:04:24 2012
(r10917)
@@ -526,7 +526,7 @@
{
$self->object->addProperty(
$self->propertyMap[$columnName],
- $this->content($value)
+ $self->content($value)
);
}
else if (
@@ -546,7 +546,7 @@
)
{
// otherwise, if column is data and it's a standard column, use it
- $self->object->{$self->columnNames[$index]} = $this->content($value);
+ $self->object->{$self->columnNames[$index]} = $self->content($value);
}
});
}
@@ -571,7 +571,7 @@
: false;
$self->createNote(
$self->noteMap[$columnName]['typeId'],
- $this->content($value),
+ $self->content($value),
$transformationLogic
);
}
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.