]> git.mxchange.org Git - hub.git/commitdiff
Update of session_id should now work
authorRoland Häder <roland@mxchange.org>
Mon, 3 Aug 2009 21:47:11 +0000 (21:47 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 3 Aug 2009 21:47:11 +0000 (21:47 +0000)
application/hub/main/nodes/class_BaseHubNode.php

index ecf088899c3c1d27999a025ed6154b29fe4c6e7b..4e903bddcb6aef99247c93358f35145a5b042a1d 100644 (file)
@@ -312,6 +312,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
 
                // Add the node id
                $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_ID, $this->getNodeId());
+
+               // Add the session id if acquired
+               if ($this->getSessionId() != '') {
+                       $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_SESSION_ID, $this->getSessionId());
+               } // END - if
        }
 
        /**