Download & Extend

"6 critical issues" only picking up those assigned to 7.x-dev

Project:Drupal.org customizations
Component:Code
Category:bug report
Priority:major
Assigned:Unassigned
Status:closed (duplicate)

Issue Summary

Someone posted an issue at #934246: An AJAX HTTP error occurred during upgrade which was assigned to "7.x-beta1" and it does not appear in the list linked to from the right sidebar, because that link is only looking for those in the "7.x-dev" version.

We should change this (and any of the other links that are wrong) to point to "- 7.x issues-" instead, so we don't miss any before release.

Comments

#1

I imagine this is just a one character change, so tagging as Novice.

#2

Not one character, no. Currently, it's done via a hard-coded constant in drupalorg.module:

<?php
/**
* Release node ids for issues we're currently tracking (Drupal 7).
*/
define('ISSUE_RIDS', '156281');
?>

This is pretty dumb. We should be doing the same thing that the project_issue views are doing for the ''7.x issues" filter, e.g.:

http://drupal.org/project/issues/drupal?version=7.x

And, the underlying links for these are wrong, too. See #383356: Fix core-related issue counts and links to use the version=7.x views filter

#3

Status:active» closed (duplicate)

I have a patch to fix both at #383356: Fix core-related issue counts and links to use the version=7.x views filter

nobody click here