diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:56:01 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:56:01 +0000 |
commit | a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d (patch) | |
tree | a435afa05cab8bf2ea5d7e4b785f018e695f1869 /engine/lib/access.php | |
parent | 2165e929ddf954f02a589234b2e0faef7ef18df7 (diff) | |
download | elgg-a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d.tar.gz elgg-a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d.tar.bz2 |
moving friends views into core
git-svn-id: http://code.elgg.org/elgg/trunk@7633 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/access.php')
-rw-r--r-- | engine/lib/access.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/access.php b/engine/lib/access.php index b87d150c0..ef9794802 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -725,7 +725,7 @@ function get_members_of_access_collection($collection, $idonly = FALSE) { } /** - * Displays a user's access collections, using the friends/collections view + * Displays a user's access collections, using the core/friends/collections view * * @param int $owner_guid The GUID of the owning user * @@ -740,7 +740,7 @@ function elgg_view_access_collections($owner_guid) { } } - return elgg_view('friends/collections', array('collections' => $collections)); + return elgg_view('core/friends/collections', array('collections' => $collections)); } /** |