Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.3.0-b2
-
Component/s: None
-
Labels:None
Description
On a wizard list order form, a client viewing package groups with access to a restricted package will see many blank packages.
On lines 86-88 we have:
if (in_array($package->id, $client_packages)) { $packages[$group->package_group_id] = $package; }
Instead it should be:
if (in_array($package->id, $client_packages)) { if (!isset($packages[$group->package_group_id])) { $packages[$group->package_group_id] = []; } $packages[$group->package_group_id][] = $package; }
Activity
Field | Original Value | New Value |
---|---|---|
Rank | Ranked higher |
Rank | Ranked higher |
Security | Private [ 10000 ] |
Sprint | 4.3.0 Sprint 11 [ 62 ] |
Rank | Ranked higher |

Status | Open [ 1 ] | In Progress [ 3 ] |
Remaining Estimate | 0 minutes [ 0 ] | |
Time Spent | 10 minutes [ 600 ] | |
Worklog Id | 11266 [ 11266 ] |

Status | In Progress [ 3 ] | In Review [ 5 ] |
Resolution | Fixed [ 1 ] |

Status | In Review [ 5 ] | Closed [ 6 ] |