diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-20 23:06:35 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-20 23:06:35 +0000 |
commit | 1429e80a1276a9081e4148076e2eac588e55a439 (patch) | |
tree | 9ebe52aa7a5c056a014187f39a6dc31c730833e7 /mod/pages/start.php | |
parent | 02bf9ae5522c752aaa7bfac9b9562c634d35cef4 (diff) | |
download | elgg-1429e80a1276a9081e4148076e2eac588e55a439.tar.gz elgg-1429e80a1276a9081e4148076e2eac588e55a439.tar.bz2 |
Fixes #2970 updated groups, file, pages, and wire plugins for automatic page owner setting
git-svn-id: http://code.elgg.org/elgg/trunk@8376 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/start.php')
-rw-r--r-- | mod/pages/start.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mod/pages/start.php b/mod/pages/start.php index ec5a8815b..5c9b4bdc7 100644 --- a/mod/pages/start.php +++ b/mod/pages/start.php @@ -113,12 +113,9 @@ function pages_page_handler($page) { $page_type = $page[0]; switch ($page_type) { case 'owner': - $owner = get_user_by_username($page[1]); - set_input('guid', $owner->guid); include "$base_dir/index.php"; break; case 'friends': - set_input('username', $page[1]); include "$base_dir/friends.php"; break; case 'view': @@ -134,7 +131,6 @@ function pages_page_handler($page) { include "$base_dir/edit.php"; break; case 'group': - set_input('guid', $page[1]); include "$base_dir/index.php"; break; case 'history': |