The link to our combined issue queues is ridiculous, and so I find myself going to the community site just to click on the 'All issue' link in the help box. It should be pretty easy to add a path (c.a.o/issues?) on the community site that just forwards us to the issue queues.

Comments

ergonlogic’s picture

Version: 7.x-3.x-dev » 6.x-2.x-dev
Status: Active » Fixed

Well, that was easy:

/**
 * Implements hook_menu().
 */
function looking_for_help_menu() {

  // Add a path that redirects to the Aegir issue queues.
  $items['issues'] = array(
    'access callback' => TRUE,
    'page callback' => 'drupal_goto',
    'page arguments' => array(
      'https://drupal.org/project/issues',
      'text=&projects=provision,+hosting,+hostslave,+eldir,+Hostmaster+(Aegir)&status=Open&priorities=All&categories=All',
    ),
  );
    
  return $items;

}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.