diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-03-18 14:12:06 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-03-18 14:15:38 +0100 |
commit | 0f494970d1b299171ff36ef395adb444bf775355 (patch) | |
tree | c4890ab803b8160da214038998407eeecd157260 /files | |
parent | 1df039716391d0708168ee6fd0c2c2ad4bac8059 (diff) | |
download | nextcloud-server-0f494970d1b299171ff36ef395adb444bf775355.tar.gz nextcloud-server-0f494970d1b299171ff36ef395adb444bf775355.zip |
Fix a couple of minor coding errors
Diffstat (limited to 'files')
-rw-r--r-- | files/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/appinfo/app.php b/files/appinfo/app.php index 8b1a806b7be..a3532e805d2 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -2,7 +2,7 @@ OC_APP::register( array( "order" => 2, "id" => "files", "name" => "Files" )); -OC_UTIL::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_HELPER::linkTo( "files", "index.php" ), "icon" => OC_HELPER::imagePath( "files", "navicon.png" ), "name" => "Files" )); -OC_UTIL::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files" )); +OC_APP::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_HELPER::linkTo( "files", "index.php" ), "icon" => OC_HELPER::imagePath( "files", "navicon.png" ), "name" => "Files" )); +OC_APP::addAdminPage( array( "order" => 1, "href" => OC_HELPER::linkTo( "files", "admin.php" ), "name" => "Files" )); ?> |