diff --git a/sites/all/modules/unl/unl.module b/sites/all/modules/unl/unl.module index 2f41eef0f37bad6abf04131a9606cd65fa101da0..9f4e2866f009fb13869edbaed3243107e815b0dc 100644 --- a/sites/all/modules/unl/unl.module +++ b/sites/all/modules/unl/unl.module @@ -353,6 +353,13 @@ function unl_permission() { */ function unl_preprocess_page(&$vars) { switch (current_path()) { + case 'admin/help': + // Override default help_help text about what to do after install + $vars['page']['help']['system_help']['#markup'] = '<h2>UNLcms Help</h2><p>Help is available from:</p> + <ul><li><a href="http://unlcms.unl.edu/guide">Online Guide</a></li> + <li><a href="http://unlcms.unl.edu/community">Users Group</a>, the second Tuesday of each month at 3:00pm in Nebraska Union</li> + <li><a href="http://wdn.unl.edu/help/irc.shtml">WDN Chat Room</a></li></ul> + <p>Below are help topics automatically generated by Drupal.</p><hr />'; case 'admin/modules': if (!unl_user_is_administrator()) { // Changed here rather than using hook_help because the later merely appends to the existing text.