* notice: Undefined property: stdClass::$nid in /sites/all/modules/revision_moderation/revision_moderation.module on line 194.
    * notice: Undefined property: stdClass::$nid in /sites/all/modules/revision_moderation/revision_moderation.module on line 234.

Comments

eeric49’s picture

I've a stdClass Notice: Looking into it :-(
Notice: Undefined property: stdClass::$nid in icl_content_nodeapi() (line 1000 of D:\xampp\htdocs\drupal78\sites\all\modules\translation_management\icl_content\icl_content.module).

ajeancharles’s picture

replace line 1000

else if ($op == 'prepare' && ! isset ( $node->icanlocalize ) $node->nid ) {
by

else if ($op == 'prepare' && ! isset ( $node->icanlocalize ) && isset($node->nid) ) {

In the case of the creation of a new node is not yet set.