summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a0ad320)
raw | patch | inline | side by side (parent: a0ad320)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 Feb 2007 10:49:17 +0000 (10:49 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 Feb 2007 10:49:17 +0000 (10:49 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5734 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/groups/class_groupManagement.inc | patch | blob | history | |
plugins/admin/ogroups/class_ogroupManagement.inc | patch | blob | history |
diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc
index 5fffa230f8eb12c85ba32a42f43b994b6235a5de..b335629ea31dcf6313194467a8d1ac6ab46ab756 100644 (file)
/* Only perform copy&paste requests if it is enabled
*/
/* Get 'dn' from posted 'uid' */
- if(in_array_ics($s_action,array("editPaste","cut","copy")) || $this->CopyPasteHandler->stillOpen()){
+ if(in_array_ics($s_action,array("editPaste","cut","copy")) || (isset($this->CopyPasteHandler) && $this->CopyPasteHandler->stillOpen())){
if(isset($this->grouplist[trim($s_entry)]['dn'])){
$dn= $this->grouplist[trim($s_entry)]['dn'];
diff --git a/plugins/admin/ogroups/class_ogroupManagement.inc b/plugins/admin/ogroups/class_ogroupManagement.inc
index 04d902d8bd93a1023fc2d7430b88cb3944803366..728c79c510c3d24edba264b06760859c6d3a46c1 100644 (file)
/* Only perform copy&paste requests if it is enabled
*/
/* Get 'dn' from posted 'uid' */
- if(in_array_ics($s_action,array("editPaste","cut","copy")) || $this->CopyPasteHandler->stillOpen()){
+ if(in_array_ics($s_action,array("editPaste","cut","copy")) || (isset($this->CopyPasteHandler) && $this->CopyPasteHandler->stillOpen())){
if(isset($this->ogrouplist[trim($s_entry)]['dn'])){
$dn= $this->ogrouplist[trim($s_entry)]['dn'];