This produces 2 errors (repeated for each box being loaded:

Notice: Undefined property: stdClass::$plugin_key in boxes_boxes_box_load_alter() (line 754 of ... boxes.module).
Notice: Undefined property: stdClass::$delta in boxes_box_load() (line 380 of ... boxes.module).

These basically occur because of an error in the boxes_box_load function:

The $delta is passed instead of $box->delta when the $delta from params is empty, thus the alter gets a null delta and loads all the boxes instead of just one.

Patch incoming.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jec006’s picture

patch

jec006’s picture

Status: Active » Needs review
FileSize
452 bytes

Also a patch for beta6 as I'm working on a site with an older version.

Please use the one in #1 for committing to dev.

fuzzy76’s picture

Issue summary: View changes
FileSize
440 bytes

Rolled against 6.x-1.1 because I have it worse ;)