diff options
author | Silvio <s1lv10@uol.com.br> | 2010-07-28 15:46:07 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-07-28 15:46:07 -0300 |
commit | 076afc9d5178131d8a1a2536d280b5f51f8b6a7e (patch) | |
tree | 318b304a9482bb5544ef5894566030f6020303aa | |
parent | bd99e1c991356c14b174c960229ef45e4eeaabe2 (diff) | |
download | sf_isis_importer_plugin-076afc9d5178131d8a1a2536d280b5f51f8b6a7e.tar.gz sf_isis_importer_plugin-076afc9d5178131d8a1a2536d280b5f51f8b6a7e.tar.bz2 |
Minor changes
-rw-r--r-- | lib/sfIsisImporter.class.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sfIsisImporter.class.php b/lib/sfIsisImporter.class.php index d3866bf..9c98630 100644 --- a/lib/sfIsisImporter.class.php +++ b/lib/sfIsisImporter.class.php @@ -56,12 +56,11 @@ class sfIsisImporter extends sfIsisImporterBase public function addEntry($base_model, $entry) { // Get data and setup the model. + $this->log("Importing $base_model $entry..."); $this->read($entry); $model = new $base_model(); $this->setBaseModelId($model); - $this->log("Importing $base_model $entry..."); - // Dispatch to custom import procedures. foreach (new IsisMethodIterator($this) as $method => $field) { |