Skip to content
Snippets Groups Projects
Commit cb218f89 authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

[gh-615] Add help text about deleting aliases

parent 61b25013
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,17 @@ function unl_multisite_block_view_my_sites() { ...@@ -46,6 +46,17 @@ function unl_multisite_block_view_my_sites() {
return $block; return $block;
} }
/**
* Implements hook_help().
*/
function unl_multisite_help($path, $arg) {
switch ($path) {
case 'admin/sites/unl/aliases':
case 'admin/sites/unl/%/aliases':
return '<p>Be careful when deleting aliases. While long, ugly paths may not appear to be needed they may still be in use - for instance in a ProxyPass setup on another server.</p>';
}
}
/** /**
* Implementation of hook_menu(). * Implementation of hook_menu().
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment