| Summary | _prefs_hook_fullname not working |
| Queue | Horde Base |
| Queue Version | HEAD |
| Type | Bug |
| State | Not A Bug |
| Priority | 1. Low |
| Owners | |
| Requester | liamr (at) umich (dot) edu |
| Created | 3/17/08 (6598 days ago) |
| Due | |
| Updated | 4/24/08 (6560 days ago) |
| Assigned | 4/2/08 (6582 days ago) |
| Resolved | 4/24/08 (6560 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Not A Bug
I'm very sorry, guys - I guess I didn't read the comments at the top
of prefs.php closely enough.
State ⇒ No Feedback
true for the prefs in question?
State ⇒ Feedback
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ _prefs_hook_fullname not working
Queue ⇒ Horde Base
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
can't get _prefs_hook_fullname() to invoke. I added a call to
Horde::logMessage(), and don't see anything in the horde log.
I was originally trying the LDAP backed one example (modified for our
ldap server), but am currently trying..
if (!function_exists('_prefs_hook_fullname')) {
function _prefs_hook_fullname($user = null)
{
$name = "Joe User";
Horde::logMessage($name, __FILE__, __LINE__, LOG_DEBUG);
return (empty($name) ? $user : $name);
}
}
thinking that should set everyone's name to "Joe User" provided
fullname isn't set for them yet.