diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-03 01:40:06 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-03 01:40:06 +0000 |
commit | e8da61b8e8654caa45a5315ce338886e802f044d (patch) | |
tree | 0088c353bd748943036f29e0df9139decb6af29e /mod/file/start.php | |
parent | 33f7cec924ff46d5f890130393fe023d2ddd6100 (diff) | |
download | elgg-e8da61b8e8654caa45a5315ce338886e802f044d.tar.gz elgg-e8da61b8e8654caa45a5315ce338886e802f044d.tar.bz2 |
Fixes #3138 using 'all' for group listing urls
git-svn-id: http://code.elgg.org/elgg/trunk@9133 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/start.php')
-rw-r--r-- | mod/file/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/start.php b/mod/file/start.php index d4f12e903..b94dc309a 100644 --- a/mod/file/start.php +++ b/mod/file/start.php @@ -73,7 +73,7 @@ function file_init() { * View file: file/view/<guid>/<title> * New file: file/add/<guid> * Edit file: file/edit/<guid> - * Group files: file/group/<guid>/owner + * Group files: file/group/<guid>/all * * Title is ignored * @@ -152,7 +152,7 @@ function file_owner_block_menu($hook, $type, $return, $params) { $return[] = $item; } else { if ($params['entity']->file_enable != "no") { - $url = "file/group/{$params['entity']->guid}/owner"; + $url = "file/group/{$params['entity']->guid}/all"; $item = new ElggMenuItem('file', elgg_echo('file:group'), $url); $return[] = $item; } |