]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/database/wrapper/node/class_NodeInformationDatabaseWrapper.php
Code cleanups and project continued:
[hub.git] / application / hub / main / database / wrapper / node / class_NodeInformationDatabaseWrapper.php
index 52dc0ff1361cd6447fd5d57e4089e528ea03307a..629844a8e03c03163c9062f249e837d13079cf4e 100644 (file)
@@ -84,8 +84,8 @@ class NodeInformationDatabaseWrapper extends BaseDatabaseWrapper {
                // Add registration elements to the dataset
                $nodeInstance->addElementsToDataSet($dataSetInstance, $requestInstance);
 
-               // "Insert" this request instance completely into the database
-               $this->getDatabaseInstance()->queryInsertDataSet($dataSetInstance);
+               // "Insert" this dataset instance completely into the database
+               $this->queryInsertDataSet($dataSetInstance);
        }
 
        /**
@@ -106,8 +106,8 @@ class NodeInformationDatabaseWrapper extends BaseDatabaseWrapper {
                // Add registration elements to the dataset
                $nodeInstance->addElementsToDataSet($dataSetInstance, $requestInstance);
 
-               // "Insert" this request instance completely into the database
-               $this->getDatabaseInstance()->queryInsertDataSet($dataSetInstance);
+               // "Insert" this dataset instance completely into the database
+               $this->queryInsertDataSet($dataSetInstance);
        }
 }