Skip to content
Snippets Groups Projects
Commit b871eb85 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix typo

parent 1fcc2c22
No related branches found
No related tags found
No related merge requests found
...@@ -1536,7 +1536,7 @@ Updates to `config.php`. Please check for updates in your local modified configu ...@@ -1536,7 +1536,7 @@ Updates to `config.php`. Please check for updates in your local modified configu
* Verification of the Receipient attribute in the response. Will improve security if for some reason an IdP is not includeding sufficient Audience restrictions. * Verification of the Receipient attribute in the response. Will improve security if for some reason an IdP is not includeding sufficient Audience restrictions.
* Added hook to let modules tell about themself moduleinfo hook. * Added hook to let modules tell about themself moduleinfo hook.
* Improved cron mails * Improved cron mails
* Improved santity check exception handling * Improved sanity check exception handling
* Preserver line breaks in stack trace UI * Preserver line breaks in stack trace UI
* Improvements to WS-Federation support: dynamic realms, logout etc. * Improvements to WS-Federation support: dynamic realms, logout etc.
* Better handling of presentation of JPEG photos as attributes. * Better handling of presentation of JPEG photos as attributes.
......
...@@ -9,7 +9,7 @@ function sanitycheck_hook_frontpage(&$links) ...@@ -9,7 +9,7 @@ function sanitycheck_hook_frontpage(&$links)
assert(is_array($links)); assert(is_array($links));
assert(array_key_exists('links', $links)); assert(array_key_exists('links', $links));
$links['config']['santitycheck'] = array( $links['config']['sanitycheck'] = array(
'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'), 'href' => SimpleSAML\Module::getModuleURL('sanitycheck/index.php'),
'text' => array('en' => 'Sanity check of your SimpleSAMLphp setup'), 'text' => array('en' => 'Sanity check of your SimpleSAMLphp setup'),
'shorttext' => array('en' => 'SanityCheck'), 'shorttext' => array('en' => 'SanityCheck'),
......
...@@ -11,7 +11,7 @@ function sanitycheck_hook_moduleinfo(&$moduleinfo) ...@@ -11,7 +11,7 @@ function sanitycheck_hook_moduleinfo(&$moduleinfo)
$moduleinfo['info']['sanitycheck'] = array( $moduleinfo['info']['sanitycheck'] = array(
'name' => array('en' => 'Sanity check'), 'name' => array('en' => 'Sanity check'),
'description' => array('en' => 'This module adds functionality for other modules to provide santity checks.'), 'description' => array('en' => 'This module adds functionality for other modules to provide sanity checks.'),
'dependencies' => array('core'), 'dependencies' => array('core'),
'uses' => array('cron'), 'uses' => array('cron'),
......
<?php <?php
/** /**
* Hook to do santity checks * Hook to do sanity checks
* *
* @param array &$hookinfo hookinfo * @param array &$hookinfo hookinfo
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment