diff --git a/islandora.module b/islandora.module index 804140be..82f891ba 100644 --- a/islandora.module +++ b/islandora.module @@ -2189,9 +2189,9 @@ function islandora_islandora_overview_object(AbstractObject $object) { } } } - $headers = format_plural(count($rows), t('Content Model'), t('Content Models')); + $header = count($rows) > 1 ? t('Content Models') : t('Content Model'); $table = theme('table', array( - 'header' => array($headers), + 'header' => array($header), 'rows' => $rows, 'empty' => t('No Islandora content model associated with this object.'))); return array('cmodels' => $table);