Summary | Columns not validated properly: commit b92ce68a0320c430b87fc8d50e0f1cc29b90c64b |
Queue | Turba |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | stuart (at) ruby (dot) naifeh (dot) org |
Created | 09/25/2013 (4304 days ago) |
Due | |
Updated | 09/29/2013 (4300 days ago) |
Assigned | |
Resolved | 09/29/2013 (4300 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | Yes |
Assigned to Michael Rubinsky
State ⇒ Resolved
commit fc91e81913472e6ba07f0267e1b92aed4ad4fac6
Author: stuart@ruby.naifeh.org <stuart@ruby.naifeh.org>
Date: Sun Sep 29 13:05:35 2013 -0400
Bug: 12709Fix array access to source map.Signed-off-by: Michael J Rubinsky <mrubinsk@horde.org>
turba/lib/Turba.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/fc91e81913472e6ba07f0267e1b92aed4ad4fac6
Priority ⇒ 1. Low
New Attachment: Turba-Column-Validation.patch
Patch ⇒ Yes
Milestone ⇒
Queue ⇒ Turba
Summary ⇒ Columns not validated properly: commit b92ce68a0320c430b87fc8d50e0f1cc29b90c64b
Type ⇒ Bug
State ⇒ Unconfirmed
right place for Turba to backend mappings, causing additional columns
not to show in address books. The commit added code to be sure there
is a mapping to a backend field before a column will be added to the
browse view, but it is looking in the wrong place for the mapping and
when it doesn't find it, it removes the column from the view. This
code is looking for mappings in
$GLOBALS['cfgSources'][$source[0]]['params']['config']['map']
, but it should be
$GLOBALS['cfgSources'][$source[0]]['map']
Patch attached.