diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-07-20 13:34:16 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-07-20 13:34:16 -0400 |
commit | 029b21bf5464e52af159920cfb00dcedeb189e3b (patch) | |
tree | 2a9ed37ea849c3f8bd0be41e16aba7e4ad357b5c /apps/files_sharing/appinfo | |
parent | 61837428ba59d1c5cc4730dda7d7a12c5bbb25f8 (diff) | |
download | nextcloud-server-029b21bf5464e52af159920cfb00dcedeb189e3b.tar.gz nextcloud-server-029b21bf5464e52af159920cfb00dcedeb189e3b.zip |
First implementation of sharing user interface
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 3b4b16e4847..b73f7d52e60 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -2,9 +2,9 @@ require_once('apps/files_sharing/lib_share.php'); -OC_APP::addSettingsPage( array( "id" => "files_sharing_administration", +OC_APP::addNavigationEntry( array( "id" => "files_sharing_list", "order" => 10, - "href" => OC_HELPER::linkTo( "files_sharing", "admin.php" ), + "href" => OC_HELPER::linkTo( "files_sharing", "list.php" ), "name" => "Share", "icon" => OC_HELPER::imagePath( "files_sharing", "share.png" ))); |