Summary | Typo on local sql additional email addresses example |
Queue | Turba |
Queue Version | 4.1.0 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | mayala (at) unex (dot) es |
Created | 06/09/2013 (4410 days ago) |
Due | |
Updated | 06/09/2013 (4410 days ago) |
Assigned | |
Resolved | 06/09/2013 (4410 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Michael Rubinsky
State ⇒ Resolved
commit 41f33a1237886e2884249dd27e1cb7aa833687a1
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Sun Jun 9 11:20:21 2013 -0400
Bug: 12322Fix typos in example configuration.turba/config/backends.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/41f33a1237886e2884249dd27e1cb7aa833687a1
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Turba
Summary ⇒ Typo on local sql additional email addresses example
Type ⇒ Bug
State ⇒ Unconfirmed
The disabled additional emails map attributes:
// 'homeemail' => 'object_homeemail',
// 'workemail' => 'object_workemail',
must be
// 'homeEmail' => 'object_homeemail',
// 'workEmail' => 'object_workemail',
and the counterpart tab:
'tabs' => array(
...
_("Communications") => array('email', 'homeemail', 'workemail',
...
must be
'tabs' => array(
...
_("Communications") => array('email', 'homeEmail', 'workEmail',
...
This way it works.