Commit 369b46cb authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(management) Fix support of DN attribute in columns

issue #5135
Showing with 5 additions and 1 deletion
+5 -1
......@@ -107,7 +107,11 @@ class Column
/* nameAttr and mainAttr as always set as needed in managementFilter */
continue;
}
$attrs[$attr] = '1';
if ($attr == 'dn') {
$attrs[$attr] = 'raw';
} else {
$attrs[$attr] = '1';
}
}
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment