| Summary | logMessage issue in lib/Horde/Group.php |
| Queue | Horde Framework Packages |
| Queue Version | HEAD |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | Chuck Hagenbuch <chuck (at) horde (dot) org> |
| Requester | matt (at) cpanel (dot) net |
| Created | 03/12/2008 (58 days ago) |
| Due | |
| Updated | 03/12/2008 (58 days ago) |
| Assigned | |
| Resolved | 03/12/2008 (58 days ago) |
| Attachments | |
| Milestone | |
| Patch |
State ⇒ Resolved
Assigned to Chuck Hagenbuch
Fixed. No guarantee there will be a 3.1.8, though.Patch ⇒
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ logMessage issue in lib/Horde/Group.php
Type ⇒ Bug
Priority ⇒ 2. Medium
State ⇒ Unconfirmed
On line 400 of Group.php:
Horde::logMessage($groups, __FILE__, __LINE__, PEAR_LOG_ERROR);
Is called, this is incorrect as per: http://pear.php.net/package/Log/docs/1.10.0/Log/_Log-1.10.0---Log.php.html
this line should be:
Horde::logMessage($groups, __FILE__, __LINE__, PEAR_LOG_ERR);