6.0.0-beta1
7/7/25

[#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 01/21/2005 (7472 days ago)
Due
Updated 01/24/2005 (7469 days ago)
Assigned 01/22/2005 (7471 days ago)
Resolved 01/23/2005 (7470 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

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



Please verify.
01/23/2005 05:48:13 AM Chuck Hagenbuch Comment #2
State ⇒ Resolved
Reply to this comment
Fixed in CVS, thanks very much.
01/22/2005 11:17:14 AM Jan Schneider Assigned to Chuck Hagenbuch
Assigned to Horde DevelopersHorde Developers
State ⇒ Assigned
 
01/21/2005 06:32:35 PM 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