6.0.0-RC7
6/27/26

[#1225] Restrict comment to group not work correctly in update page
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 1/21/05 (7827 days ago)
Due
Updated 1/24/05 (7824 days ago)
Assigned 1/22/05 (7826 days ago)
Resolved 1/23/05 (7825 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

History
587 Chuck Hagenbuch Comment #4 Reply to this comment
no, that was fixed at the same time
112 allen (dot) zhao (at) camilion (dot) com Comment #3 Reply to this comment
Same problem in ticket/people.php



Please verify.
135 Chuck Hagenbuch Comment #2
State ⇒ Resolved
Reply to this comment
Fixed in CVS, thanks very much.
1411 Jan Schneider Assigned to Chuck Hagenbuch
Assigned to Horde DevelopersHorde Developers
State ⇒ Assigned
 
356 allen (dot) zhao (at) camilion (dot) com Comment #1
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Restrict comment to group not work correctly in update page
Queue ⇒ Whups
Reply to this comment
The "Restrict Comment To group" not function correctly.



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']);

             }




Saved Queries