| Summary | Restrict comment to group not work correctly in update page |
| Queue | Whups |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | Horde Developers (at) , chuck (at) horde (dot) org |
| Requester | allen.zhao (at) camilion (dot) com |
| Created | 01/21/2005 (7595 days ago) |
| Due | |
| Updated | 01/24/2005 (7592 days ago) |
| Assigned | 01/22/2005 (7594 days ago) |
| Resolved | 01/23/2005 (7593 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
Please verify.
State ⇒ Resolved
Assigned to
State ⇒ Assigned
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Restrict comment to group not work correctly in update page
Queue ⇒ Whups
We need a group id not the group name in the group enum.
In ticket/update.php Line 68-69
foreach ($mygroups as $group) {
$grouplist[$group] = String::convertCharset($group,
$GLOBALS['conf']['sql']['charset']);
}
My change:
foreach ($mygroups as $mygid => $group) {
$grouplist[$mygid] = String::convertCharset($group,
$GLOBALS['conf']['sql']['charset']);
}