diff options
Diffstat (limited to 'apps/files/appinfo/app.php')
-rwxr-xr-x | apps/files/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 0e82713fe5c..4a05a655957 100755 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -3,8 +3,8 @@ $l=OC_L10N::get('files'); -OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" )); +OCP\App::register( array( "order" => 2, "id" => "files", "name" => "Files" )); -OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 0, "href" => OCP\Util::linkTo( "files", "index.php" ), "icon" => OCP\Util::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") )); +OCP\App::addNavigationEntry( array( "id" => "files_index", "order" => 0, "href" => OCP\Util::linkTo( "files", "index.php" ), "icon" => OCP\Util::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); |