July 24, 201411 yr Another issue I'm searching for results for since I'm having a heck of a time finding any support for Open Atrium Notice: Undefined index: reusestyle in manualcrop_preprocess_image() (line 717 of/Users/dennis/Sites/ipseweb/profiles/openatrium/modules/contrib/manualcrop/manualcrop.module).
July 29, 201411 yr Author Solution was to edit Users/dennis/Sites/ipseweb/profiles/openatrium/modules/contrib/manualcrop/manualcrop.module go down to line 717 and find what look like the following and replace this // Use the reuse style to load the crop selection. if (_manualcrop_is_own_effect($styles[$style_name], FALSE)) { $style_name = $styles[$style_name]['data']['reusestyle']; } With this // Use the reuse style to load the crop selection. if (_manualcrop_is_own_effect($styles[$style_name], FALSE)) { if(isset($styles[$style_name]['data']['reusestyle'])) { $style_name = $styles[$style_name]['data']['reusestyle']; } } Reference: https://www.drupal.org/node/2149431#comment-9009239
Create an account or sign in to comment