I've got another "undefined index" Error in Line 217 and changed this from
$form_state['context']['commerce_product_reference_flag_destination'] = $form_state['values']['commerce_product_reference_flag_destination'];
into
if(isset($form_state['context']['commerce_product_reference_flag_destination'])) {
$form_state['context']['commerce_product_reference_flag_destination'] = $form_state['values']['commerce_product_reference_flag_destination'];
}It seems to be working fine now.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | commerce_product_reference_flag_undefined_index-2415579-1.patch | 949 bytes | istavros |
Comments
Comment #1
istavros commentedHere is a patch for this
Comment #2
vensires