summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-23 08:07:01 -0700
committerLukas Reschke <lukas@statuscode.ch>2012-10-23 08:07:01 -0700
commit73f85c3b812ced29d387bf6baea5f693920c1314 (patch)
treeda111cab4f0fb756ecf1730fe526ffea0108147f /apps
parentd18ea0e76c23af5108065568eec42f70b0a3d3a8 (diff)
parent6a00a6b9ed49f9a9da044772e7ca7f3506672100 (diff)
downloadnextcloud-server-73f85c3b812ced29d387bf6baea5f693920c1314.tar.gz
nextcloud-server-73f85c3b812ced29d387bf6baea5f693920c1314.zip
Merge pull request #62 from fmms/master
More Checkstyle warnings
Diffstat (limited to 'apps')
-rw-r--r--apps/files/ajax/scan.php2
-rw-r--r--apps/files/appinfo/app.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php
index d2ec1ab5161..5cd9572d7f9 100644
--- a/apps/files/ajax/scan.php
+++ b/apps/files/ajax/scan.php
@@ -21,7 +21,7 @@ if($force or !OC_FileCache::inCache('')) {
OC_Cache::clear('fileid/'); //make sure the old fileid's don't mess things up
}
- OC_FileCache::scan($dir,$eventSource);
+ OC_FileCache::scan($dir, $eventSource);
OC_FileCache::clean();
OCP\DB::commit();
$eventSource->send('success', true);
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php
index db3b213ab8d..b431ddfec02 100644
--- a/apps/files/appinfo/app.php
+++ b/apps/files/appinfo/app.php
@@ -1,7 +1,7 @@
<?php
$l=OC_L10N::get('files');
-OCP\App::registerAdmin('files','admin');
+OCP\App::registerAdmin('files', 'admin');
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") ));