diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-07-06 15:15:44 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-07-06 15:15:44 +0000 |
commit | 1a5f51b1fcd6687735f096870a8547b125a43e06 (patch) | |
tree | 1e6887b4ef38d9b22df0c385d365beb77ef22877 | |
parent | fb5178851c9ded1f554b78d9918adcbd114fb8e3 (diff) | |
download | elgg-1a5f51b1fcd6687735f096870a8547b125a43e06.tar.gz elgg-1a5f51b1fcd6687735f096870a8547b125a43e06.tar.bz2 |
Fixed doubling on icon edit (nb. this was not the same issue as Refs #1100)
git-svn-id: https://code.elgg.org/elgg/trunk@3390 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/profile/start.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index 2b4d08c5d..d9909aab2 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -153,10 +153,11 @@ } } -
- // Include the standard profile index
- include($CONFIG->pluginspath . "profile/index.php");
-
+ else + {
+ // Include the standard profile index
+ include($CONFIG->pluginspath . "profile/index.php");
+ }
} /** |