diff --git a/modules/core/locales/en/LC_MESSAGES/core.po b/modules/core/locales/en/LC_MESSAGES/core.po index 0c2a4fc64276e21d24eea064c476f38b90043501..9ddd25f62f64f4858ba2ccc18b6c525873f43a2c 100644 --- a/modules/core/locales/en/LC_MESSAGES/core.po +++ b/modules/core/locales/en/LC_MESSAGES/core.po @@ -75,7 +75,7 @@ msgstr "Show statistics metadata" msgid "{core:frontpage:link_metarefresh}" msgstr "Metarefresh: fetch metadata" -msgid "{core:frontpage:link_santitycheck}" +msgid "{core:frontpage:link_sanitycheck}" msgstr "Sanity check of your SimpleSAMLphp setup" msgid "{core:frontpage:link_diagnostics}" diff --git a/modules/portal/config-templates/module_portal.php b/modules/portal/config-templates/module_portal.php index bff5d9ac66ccfd02cff2adf2f3cae0fbfb5db3e5..8bba3c350178a57550db8e0f1329542d8b0d18b5 100644 --- a/modules/portal/config-templates/module_portal.php +++ b/modules/portal/config-templates/module_portal.php @@ -7,7 +7,7 @@ $config = array ( 'pagesets' => array( array('frontpage_welcome', 'frontpage_config', 'frontpage_auth', 'frontpage_federation'), - array('santitycheck', 'statistics'), + array('sanitycheck', 'statistics'), ), ); diff --git a/modules/sanitycheck/hooks/hook_frontpage.php b/modules/sanitycheck/hooks/hook_frontpage.php index bec44d74c66445dbeb41fc9d9575d772a6e11109..7a13de7c73a6a949e0eabfc1f63a54129eb5c5c0 100644 --- a/modules/sanitycheck/hooks/hook_frontpage.php +++ b/modules/sanitycheck/hooks/hook_frontpage.php @@ -9,8 +9,8 @@ function sanitycheck_hook_frontpage(&$links) assert(is_array($links)); assert(array_key_exists('links', $links)); - $links['config']['santitycheck'] = array( + $links['config']['sanitycheck'] = array( 'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'), - 'text' => '{core:frontpage:link_santitycheck}', + 'text' => '{core:frontpage:link_sanitycheck}', ); }