diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 10:29:43 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 10:29:43 +0000 |
commit | abf321f2fb25d1750c96a67807bcda84a63ba497 (patch) | |
tree | b5adddfd4456b707a35b8c35acb3782ecfe5bce0 /mod/profile | |
parent | ba23d8e106d4652e229d1839ec2dd13cf4daaad9 (diff) | |
download | elgg-abf321f2fb25d1750c96a67807bcda84a63ba497.tar.gz elgg-abf321f2fb25d1750c96a67807bcda84a63ba497.tar.bz2 |
Added site default access permissions. Refs #744
git-svn-id: https://code.elgg.org/elgg/trunk@2885 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/actions/edit.php | 1 | ||||
-rw-r--r-- | mod/profile/views/default/profile/edit.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mod/profile/actions/edit.php b/mod/profile/actions/edit.php index 7a4716646..95a669a69 100644 --- a/mod/profile/actions/edit.php +++ b/mod/profile/actions/edit.php @@ -44,6 +44,7 @@ if (isset($accesslevel[$shortname])) {
$access_id = (int) $accesslevel[$shortname];
} else {
+ // this should never be executed since the access level should always be set
$access_id = ACCESS_PRIVATE;
}
if (is_array($value)) {
diff --git a/mod/profile/views/default/profile/edit.php b/mod/profile/views/default/profile/edit.php index 7b1f9540a..e2eb8f5ce 100644 --- a/mod/profile/views/default/profile/edit.php +++ b/mod/profile/views/default/profile/edit.php @@ -36,7 +36,7 @@ }
} else {
$value = '';
- $access_id = ACCESS_LOGGED_IN;
+ $access_id = ACCESS_DEFAULT;
}
?>
|