summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5dd81a6)
raw | patch | inline | side by side (parent: 5dd81a6)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 2 Feb 2010 07:26:40 +0000 (07:26 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 2 Feb 2010 07:26:40 +0000 (07:26 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15567 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_SnapShotDialog.inc | patch | blob | history |
diff --git a/gosa-core/include/class_SnapShotDialog.inc b/gosa-core/include/class_SnapShotDialog.inc
index aafd2e5ed191f02a9d09caee0bf04acce97d3594..3bde8d02e759e3e03ff58087be829bd3a1daf6f3 100644 (file)
}
$field0 = array("string"=> $time_stamp , "attach"=> "style='vertical-align:top;width:120px;'");
- $field1 = array("string"=> htmlentities (utf8_decode($display_data)), "attach"=> "");
+ $field1 = array("string"=> htmlentities (utf8_decode(LDAP::fix($display_data))), "attach"=> "");
$field2 = array("string"=> str_replace("%KEY",base64_encode($entry['dn']),$actions) ,
"attach"=> "style='border-right:0px;vertical-align:top;width:40px;text-align:right;'");
$DivListSnapShots->AddEntry(array($field0,$field1,$field2));
$smarty->assign("restore_deleted",$this->display_all_removed_objects);
$smarty->assign("RestoreMode",$this->display_restore_dialog);
$smarty->assign("CurrentDate",date(_("Y-m-d, H:i:s")));
- $smarty->assign("CurrentDN",$this->dn);
+ $smarty->assign("CurrentDN",LDAP::fix($this->dn));
$smarty->assign("CurrentDescription",$this->CurrentDescription);
return($smarty->fetch(get_template_path("snapshotdialog.tpl")));
}