Skip to content

Commit

Permalink
Bug: 12709 Fix array access to source map.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael J Rubinsky <mrubinsk@horde.org>
  • Loading branch information
stuart@ruby.naifeh.org authored and mrubinsk committed Sep 29, 2013
1 parent a850f7a commit fc91e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turba/lib/Turba.php
Expand Up @@ -177,7 +177,7 @@ static public function getColumns()
$source = array_splice($cols, 0, 1);
$columns[$source[0]] = array();
foreach ($cols as $col) {
if (isset($GLOBALS['cfgSources'][$source[0]]['params']['config']['map'][$col])) {
if (isset($GLOBALS['cfgSources'][$source[0]]['map'][$col])) {
$columns[$source[0]][] = $col;
}
}
Expand Down

0 comments on commit fc91e81

Please sign in to comment.