Skip to content

Commit

Permalink
- Added release 0.1.1.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.projects.ez.no/ezxmlinstaller/ezp4/releases/0.1.1@6 de1ecc26-1c65-46f3-84d8-c63194b32b8d
  • Loading branch information
Dirk Schmedding committed May 23, 2008
1 parent 85dc2d0 commit 910c67e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmlinstallerhandler/ezcreatecontent.php
Expand Up @@ -38,10 +38,10 @@ function proccessCreateContent( $xmlNode, $parentNodeID = false )
$objectInformation = array(); $objectInformation = array();
$objectInformation['parentNode'] = $parentNodeID; $objectInformation['parentNode'] = $parentNodeID;


$objectInformation['classID'] = $objectNode->getAttribute( 'contentClass' ); $objectInformation['classID'] = $this->getReferenceID( $objectNode->getAttribute( 'contentClass' ) );
$objectInformation['remoteID'] = $objectNode->getAttribute( 'remoteID' ); $objectInformation['remoteID'] = $objectNode->getAttribute( 'remoteID' );
$objectInformation['objectID'] = $objectNode->getAttribute( 'objectID' ); $objectInformation['objectID'] = $objectNode->getAttribute( 'objectID' );
$objectInformation['sectionID'] = $objectNode->getAttribute( 'section' ); $objectInformation['sectionID'] = $this->getReferenceID( $objectNode->getAttribute( 'section' ) );
$objectInformation['ownerID'] = $objectNode->getAttribute( 'owner' ); $objectInformation['ownerID'] = $objectNode->getAttribute( 'owner' );
$objectInformation['creatorID'] = $objectNode->getAttribute( 'creator' ); $objectInformation['creatorID'] = $objectNode->getAttribute( 'creator' );
$objectInformation['attributes'] = array(); $objectInformation['attributes'] = array();
Expand Down

0 comments on commit 910c67e

Please sign in to comment.