| Summary | Restrict comment to group not work correctly in update page |
| Queue | Whups |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | Chuck Hagenbuch <chuck (at) horde (dot) org>, Horde Developers |
| Requester | allen (dot) zhao (at) camilion (dot) com |
| Created | 01/21/2005 (1446 days ago) |
| Due | |
| Updated | 01/24/2005 (1443 days ago) |
| Assigned | 01/22/2005 (1445 days ago) |
| Resolved | 01/23/2005 (1444 days ago) |
| Attachments | |
| Milestone | |
| Patch | No |
Please verify.
State ⇒ Resolved
State ⇒ Assigned
Assigned to
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']);
}