From 0b3af6b9821a23f8d63e1c121c386d0b1baa5320 Mon Sep 17 00:00:00 2001 From: Adam Vessey Date: Tue, 26 Jan 2016 11:48:07 -0400 Subject: [PATCH] Fix random coding standard issues. --- islandora.api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/islandora.api.php b/islandora.api.php index a53b7e99..8334a2e3 100644 --- a/islandora.api.php +++ b/islandora.api.php @@ -868,9 +868,9 @@ function hook_islandora_edit_datastream_registry_alter(&$edit_registry, $context unset($edit_registry['xml_form_builder_edit_form_registry']); } // Add custom form to replace the removed form builder edit_form. - $edit_registry['somemodule_custom_form'] = array( + $edit_registry['somemodule_custom_form'] = array( 'name' => t('Somemodule Custom Form'), - 'url' => "islandora/custom_form/{$context['object']->id}/{$context['datastream']->id}" + 'url' => "islandora/custom_form/{$context['object']->id}/{$context['datastream']->id}", ); }