summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 53adad4)
raw | patch | inline | side by side (parent: 53adad4)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 1 Jul 2010 08:08:13 +0000 (08:08 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 1 Jul 2010 08:08:13 +0000 (08:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18899 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_acl.inc | patch | blob | history | |
gosa-core/plugins/generic/references/class_aclResolver.inc | patch | blob | history |
index 0a325f1b5892bfd97c8c7ca45a5b43caea1eaf71..82cbdff1827918929fcf711281282e1d8af26c33 100644 (file)
$options.= $this->mkchkbx($key."_0_m", _("Move objects"), preg_match('/m/', $overall_acl)).$spc;
$options.= $this->mkchkbx($key."_0_d", _("Remove objects"), preg_match('/d/', $overall_acl)).$spc;
if ($plist[preg_replace('%^.*/%', '', $key)]['plSelfModify']){
- $options.= $this->mkchkbx($key."_0_s", _("Grant permission to owner"), preg_match('/s/', $overall_acl)).$spc;
+ $options.= $this->mkchkbx($key."_0_s", _("Restrict changes to user's own object"), preg_match('/s/', $overall_acl)).$spc;
}
/* Global options */
diff --git a/gosa-core/plugins/generic/references/class_aclResolver.inc b/gosa-core/plugins/generic/references/class_aclResolver.inc
index f33185614996f9d8e2d8e49e346876ef4967f76f..51d05a510ddd1482c628245949a72e090263725d 100644 (file)
$str .= "<li><i>".$name.":</i> ";
$str .= "<ul class='acl-list'>";
if(preg_match("/s/", $acl)){
- $str.="<li><u>"._("Grant permission to owner").'</u></li>';
+ $str.="<li><u>"._("Restrict changes to user's own object").'</u></li>';
}
if(preg_match("/r/", $acl)) $str.="<li>"._("read").'</li>';
if(preg_match("/w/", $acl)) $str.="<li>"._("write").'</li>';