diff options
-rw-r--r-- | modules/core/www/frontpage_config.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php index b8cb6f9..7f92a6e 100644 --- a/modules/core/www/frontpage_config.php +++ b/modules/core/www/frontpage_config.php @@ -177,7 +177,11 @@ $t->data['links_federation'] = $links_federation; $t->data['enablematrix'] = $enablematrix; $t->data['funcmatrix'] = $funcmatrix; -$t->data['requiredmap'] = array('recommended' => $t->noop('{core:frontpage:recommended}')); +$t->data['requiredmap'] = array( + 'recommended' => $t->noop('{core:frontpage:recommended}'), + 'required' => $t->noop('{core:frontpage:required}'), + 'optional' => $t->noop('{core:frontpage:optional}'), +); $t->data['version'] = $config->getVersion(); $t->data['directory'] = dirname(dirname(dirname(dirname(__FILE__)))); |