fixed DN in PDF documents

This commit is contained in:
Roland Gruber 2010-01-13 18:55:22 +00:00
parent 45fcc75ea6
commit 0c4fccead5
1 changed files with 5 additions and 1 deletions

View File

@ -1942,7 +1942,11 @@ class accountContainer {
$return = array_merge($return,$current->get_pdfEntries());
next($this->module);
}
$return = array_merge($return,array('main_dn' => array('<block><key>' . _('DN') . '</key><value>' . $this->dn . '</value></block>')));
$dn = $this->dn_orig;
if (isset($this->finalDN)) {
$dn = $this->finalDN;
}
$return = array_merge($return,array('main_dn' => array('<block><key>' . _('DN') . '</key><value>' . $dn . '</value></block>')));
return $return;
}