Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Undefined const error and parser error #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions classes/ezcontentstagingevent.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class eZContentStagingEvent extends eZPersistentObject
// remote_object_id into the remote node (known by its node_id)
const ACTION_UPDATEREMOTEIDS = 65536;
const ACTION_RESTOREFROMTRASH = 131072;
const ACTION_INITIALIZEFEED = 262144;

static $syncStrings = array(
self::ACTION_ADDLOCATION => 'location added',
Expand Down
2 changes: 1 addition & 1 deletion classes/models/content.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ static public function createContent( eZContentObjectTreeNode $parent, $input, $
$version->store();

self::updateAttributesList(
$content->contentObjectAttributes( true, false, isset( $input['initialLanguage'] ) ? $input['initialLanguage'] : false );
$content->contentObjectAttributes( true, false, isset( $input['initialLanguage'] ) ? $input['initialLanguage'] : false ),
$input['fields']
);

Expand Down