Skip to content

Commit

Permalink
- Fixed regression caused by the fix for issue #13332
Browse files Browse the repository at this point in the history
# Thanks to Andreas Schamberger for the fix.


git-svn-id: http://svn.ez.no/svn/ezcomponents/trunk@11468 bc0e7bdc-f0fc-0310-8ff6-f601c06e1256
  • Loading branch information
kn committed Mar 23, 2010
1 parent bd76766 commit 569ab92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions TreeDatabaseTiein/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.1.2 - [RELEASEDATE]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Fixed regression caused by the fix for issue #13332


1.1.1 - Monday 15 December 2008
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions TreeDatabaseTiein/src/stores/db_external.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public function fetchDataForNode( ezcTreeNode $node )
{
throw new ezcTreeDataStoreMissingDataException( $node->id );
}
$node->data = $this->filterDataFromResult( $result );
$node->injectData( $this->filterDataFromResult( $result ) );
$node->dataFetched = true;
}

Expand Down Expand Up @@ -198,7 +198,7 @@ public function fetchDataForNodes( ezcTreeNodeList $nodeList )

foreach ( $s as $result )
{
$nodeList[$result[$this->idField]]->data = $this->filterDataFromResult( $result );
$nodeList[$result[$this->idField]]->injectData( $this->filterDataFromResult( $result ) );
$nodeList[$result[$this->idField]]->dataFetched = true;
}
}
Expand Down

0 comments on commit 569ab92

Please sign in to comment.