6.0.0-beta13
4/11/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 (7750 days ago)
Due
Updated 1/24/05 (7747 days ago)
Assigned 1/22/05 (7749 days ago)
Resolved 1/23/05 (7748 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

History
24.01.2005 19:59:58 Chuck Hagenbuch Comment #4 Reply to this comment
no, that was fixed at the same time
24.01.2005 14:18:11 allen (dot) zhao (at) camilion (dot) com Comment #3 Reply to this comment
Same problem in ticket/people.php



Please verify.
23.01.2005 05:48:13 Chuck Hagenbuch Comment #2
State ⇒ Resolved
Reply to this comment
Fixed in CVS, thanks very much.
22.01.2005 11:17:14 Jan Schneider Assigned to Chuck Hagenbuch
Assigned to Horde DevelopersHorde Developers
State ⇒ Assigned
 
21.01.2005 18:32:35 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