diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 15:46:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 15:46:16 +0000 |
commit | 7184453089f95216643ab697930b020890c65006 (patch) | |
tree | 27a64f6181a3a505e7822e0671617125a104ba02 /settings/index.php | |
parent | ab1a4a3daa441fcd2e4d9b37267de3b48fae9d6f (diff) | |
download | elgg-7184453089f95216643ab697930b020890c65006.tar.gz elgg-7184453089f95216643ab697930b020890c65006.tar.bz2 |
Closes #335: Marcus Povey :
* Per user tools settings now present again (only displays if there are settings present AND the plugin is enabled - needs skinning accordingly)
* Re-jigged the settings code to behave like a proper page handler.
* Minor tweak to language
git-svn-id: https://code.elgg.org/elgg/trunk@2279 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'settings/index.php')
-rw-r--r-- | settings/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/index.php b/settings/index.php index 041a06616..4aaf875bf 100644 --- a/settings/index.php +++ b/settings/index.php @@ -17,11 +17,11 @@ set_page_owner($_SESSION['guid']);
// Make sure we don't open a security hole ...
- if (!page_owner_entity()->canEdit()) {
+ if ((!page_owner_entity()) || (!page_owner_entity()->canEdit())) {
set_page_owner($_SESSION['guid']);
}
// Forward to the user settings - forward('pg/settings/user?username=' . page_owner_entity()->username);
+ forward('pg/settings/user/' . page_owner_entity()->username . "/");
?>
\ No newline at end of file |