Notice: Undefined property: stdClass::$nid in field_slideshow_field_formatter_view() (line 559 of /drupal7/sites/all/modules/contrib/field_slideshow/field_slideshow.module).

Needs some kind of isset at/after line 556 is this correct:

if(isset($entity->nid)){
  $uri['options']['attributes'] = array(
    'class' => array('colorbox'),
    'rel'   => 'field-slideshow[' . $entity->nid . ']',
  );
}

It fixes the notice anyway!

Comments

featherbelly’s picture

Or this:

            $uri['options']['attributes'] = array(
              'class' => array('colorbox'),
              'rel'   => 'field-slideshow[' . ( isset($entity->nid) ? $entity->nid : '' ) . ']',
            );
jdanthinne’s picture