diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-03-01 22:58:44 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-03-01 22:59:35 +0100 |
commit | d1dcd7893cb878263b8179bab16d101036c57a88 (patch) | |
tree | c2759b3d1a862fed99144d79907d9b9628671d90 /files | |
parent | 8c7b13db7011c8be986e9e525ca392bb13375432 (diff) | |
download | nextcloud-server-d1dcd7893cb878263b8179bab16d101036c57a88.tar.gz nextcloud-server-d1dcd7893cb878263b8179bab16d101036c57a88.zip |
Search: Change provider registration to class name, for lazy loading of search providers
Diffstat (limited to 'files')
-rw-r--r-- | files/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/appinfo/app.php b/files/appinfo/app.php index e434296b250..0bf73d9a07e 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -7,4 +7,4 @@ OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" )); OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_Helper::linkTo( "files", "index.php" ), "icon" => OC_Helper::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") )); -?> +OC_Search::registerProvider('OC_Search_Provider_File'); |