From 715f4d2c3babcbd9913d4da4282587606d0d4bb1 Mon Sep 17 00:00:00 2001 From: ajstanley Date: Sat, 30 Jul 2016 12:45:09 -0300 Subject: [PATCH] coder --- islandora.module | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/islandora.module b/islandora.module index 96ff98d4..e3612707 100644 --- a/islandora.module +++ b/islandora.module @@ -2190,11 +2190,11 @@ function islandora_islandora_overview_object(AbstractObject $object) { } $header = format_plural(count($rows), 'Content Model', 'Content Models'); $table = array( - '#type' => 'markup', - '#theme' => 'table', - '#header' => array($header), - '#rows' => $rows, - '#empty' => t('No Islandora content model associated with this object.'), - ); + '#type' => 'markup', + '#theme' => 'table', + '#header' => array($header), + '#rows' => $rows, + '#empty' => t('No Islandora content model associated with this object.') + ); return array('cmodels' => $table); }