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 | 03/17/2008 (6324 days ago) |
Due | |
Updated | 04/24/2008 (6286 days ago) |
Assigned | 04/02/2008 (6308 days ago) |
Resolved | 04/24/2008 (6286 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.