summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b4bca1c)
raw | patch | inline | side by side (parent: b4bca1c)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 3 Apr 2008 13:54:44 +0000 (13:54 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 3 Apr 2008 13:54:44 +0000 (13:54 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10156 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_CopyPasteHandler.inc | patch | blob | history |
diff --git a/gosa-core/include/class_CopyPasteHandler.inc b/gosa-core/include/class_CopyPasteHandler.inc
index 114beeaa777229d1fce7a5fae8bccaff9c88d0ed..ed01b1cf835d93ac4e943b581eb39d2c8aa59c12 100644 (file)
/* Display a list of all pastable entries
*/
if(count($this->clean_objects)){
+
+ $dns = array();
+ foreach($this->clean_objects as $object){
+ $dns[] = $object['dn'];
+ }
+
$smarty = get_smarty();
$smarty->assign("type","directly");
$smarty->assign("Complete",false);
$smarty->assign("AttributesToFix"," ");
$smarty->assign("SubDialog","");
- $smarty->assign("message" , sprintf(_("These objects will be pasted: %s"), "<br>".msgPool::buildList($this->clean_objects)));
+ $smarty->assign("message" , sprintf(_("These objects will be pasted: %s"), "<br>".msgPool::buildList($dns)));
return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
}