From: Roland Häder Date: Mon, 3 Aug 2009 21:47:11 +0000 (+0000) Subject: Update of session_id should now work X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=be8a28c4f6b1b6ebd9d7a3168e91e591b5b48f80;p=hub.git Update of session_id should now work --- diff --git a/application/hub/main/nodes/class_BaseHubNode.php b/application/hub/main/nodes/class_BaseHubNode.php index ecf088899..4e903bddc 100644 --- a/application/hub/main/nodes/class_BaseHubNode.php +++ b/application/hub/main/nodes/class_BaseHubNode.php @@ -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 } /**