Summary | Nag throws undefined function error |
Queue | Nag |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | |
Requester | jps (at) maxlingua (dot) com |
Created | 05/25/2006 (7084 days ago) |
Due | |
Updated | 05/25/2006 (7084 days ago) |
Assigned | |
Resolved | 05/25/2006 (7084 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Nag throws undefined function error
Queue ⇒ Nag
===cut
PHP Fatal error: Call to undefined function: listAllUsers() in
../nag/lib/Nag.php on line 617
===cut
This can be fixed by adding the following code (lifted from
../kronolith/lib/Kronolith.php) immediately before line 617:
===cut
if (is_a($group, 'PEAR_Error')) {
continue;
}
===cut