Browse Source

Merge pull request #104 from lsulibraries/7.x-2.x

first draft fix for #93
7.x-2.x
Nick Ruest 9 years ago
parent
commit
6c98814452
  1. 4
      islandora_basic_image/islandora_basic_image.module

4
islandora_basic_image/islandora_basic_image.module

@ -81,8 +81,8 @@ function islandora_basic_image_form_islandora_basic_image_node_form_alter(&$form
function islandora_basic_image_add_parent_uuid(array $form, array &$form_state) { function islandora_basic_image_add_parent_uuid(array $form, array &$form_state) {
$node = $form_state['node']; $node = $form_state['node'];
$node->parent_collection = ""; $node->parent_collection = "";
if (isset($form_state['parent_collection']['#value'])) { if (isset($form_state['values']['parent_collection'])) {
$node->parent_collection = $form_state['parent_collection']['#value']; $form_state['values']['field_fedora_has_parent']['und'][0]['value'] = $form_state['values']['parent_collection'];
} }
} }

Loading…
Cancel
Save