diff --git a/apps/files/appinfo/application.php b/apps/files/appinfo/application.php index fcf974a701..13ff60daf8 100644 --- a/apps/files/appinfo/application.php +++ b/apps/files/appinfo/application.php @@ -31,9 +31,9 @@ class Application extends App { ); }); - /** - * Core - */ + /** + * Core + */ $container->registerService('L10N', function(IContainer $c) { return $c->query('ServerContainer')->getL10N($c->query('AppName')); }); diff --git a/apps/files/controller/apicontroller.php b/apps/files/controller/apicontroller.php index 1990971438..902731a049 100644 --- a/apps/files/controller/apicontroller.php +++ b/apps/files/controller/apicontroller.php @@ -19,6 +19,11 @@ use OCA\Files\Service\TagService; class ApiController extends Controller { + /** + * @var TagService $tagService + */ + private $tagService; + public function __construct($appName, IRequest $request, TagService $tagService){ parent::__construct($appName, $request); $this->tagService = $tagService; diff --git a/apps/files/index.php b/apps/files/index.php index 6f5989820b..02076226c1 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -90,11 +90,11 @@ function sortNavigationItems($item1, $item2) { \OCA\Files\App::getNavigationManager()->add( array( - "id" => 'favorites', - "appname" => 'files', - "script" => 'simplelist.php', - "order" => 50, - "name" => $l->t('Favorites') + 'id' => 'favorites', + 'appname' => 'files', + 'script' => 'simplelist.php', + 'order' => 50, + 'name' => $l->t('Favorites') ) ); diff --git a/apps/files/js/tagsplugin.js b/apps/files/js/tagsplugin.js index 550026e3b4..a6757431ff 100644 --- a/apps/files/js/tagsplugin.js +++ b/apps/files/js/tagsplugin.js @@ -12,7 +12,7 @@ (function(OCA) { - var TEMPLATE_FAVORITE_ACTION = + var TEMPLATE_FAVORITE_ACTION = '' + '{{altText}}' + @@ -30,7 +30,7 @@ /** * Render the star icon with the given state - * + * * @param {boolean} state true if starred, false otherwise * @return {Object} jQuery object */ diff --git a/apps/files/simplelist.php b/apps/files/simplelist.php index e3fdf6cd1d..53e56b4ed3 100644 --- a/apps/files/simplelist.php +++ b/apps/files/simplelist.php @@ -21,8 +21,7 @@ * */ -// Check if we are a user -OCP\User::checkLoggedIn(); +// TODO: move to handlebars // renders the controls and table headers template $tmpl = new OCP\Template('files', 'simplelist', '');