From c58ff5db7a661df5211a796aeab4e728bd4b03dd Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Mon, 25 Nov 2013 19:59:04 +0100 Subject: [PATCH] Support displaying tag columns. --- turba/lib/Turba.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turba/lib/Turba.php b/turba/lib/Turba.php index dd2e5f1fc1d..da3c927a18f 100644 --- a/turba/lib/Turba.php +++ b/turba/lib/Turba.php @@ -177,7 +177,8 @@ static public function getColumns() $source = array_splice($cols, 0, 1); $columns[$source[0]] = array(); foreach ($cols as $col) { - if (isset($GLOBALS['cfgSources'][$source[0]]['map'][$col])) { + if ($col == '__tags' || + isset($GLOBALS['cfgSources'][$source[0]]['map'][$col])) { $columns[$source[0]][] = $col; } }