Fixed display of Windows AD binary attributes

This commit is contained in:
Deon George
2009-08-13 21:39:43 +10:00
parent 8a21bbee12
commit 9eca46d0cc
3 changed files with 4 additions and 2 deletions

View File

@@ -606,6 +606,9 @@ class PageRender extends Visitor {
final protected function drawCurrentValueBinaryAttribute($attribute,$i) {
printf('<small>[%s]</small>',_('Binary Value'));
if (in_array($attribute->getName(),array('objectsid')))
printf('<small> (%s)</small>', binSIDtoText($attribute->getValue(0)));
}
protected function drawFormReadOnlyValueBinaryAttribute($attribute,$i) {