diff options
author | Marien Fressinaud <dev@marienfressinaud.fr> | 2014-10-05 18:24:28 +0200 |
---|---|---|
committer | Marien Fressinaud <dev@marienfressinaud.fr> | 2014-10-05 18:24:28 +0200 |
commit | 9a0d01be0cb627b30424e9f938face34c6c3814d (patch) | |
tree | 19be98eccd0461db74d0e8b715ca9793a6951407 /app/Controllers/javascriptController.php | |
parent | 3831961b2e515ff7d8d352c0f7b6a15b3a613c25 (diff) | |
download | freshrss-9a0d01be0cb627b30424e9f938face34c6c3814d.tar.gz freshrss-9a0d01be0cb627b30424e9f938face34c6c3814d.zip |
Coding style
Remove spaces before parenthesis.
See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/Controllers/javascriptController.php')
-rwxr-xr-x | app/Controllers/javascriptController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controllers/javascriptController.php b/app/Controllers/javascriptController.php index 67148350f..2a0dbd3d9 100755 --- a/app/Controllers/javascriptController.php +++ b/app/Controllers/javascriptController.php @@ -1,11 +1,11 @@ <?php class FreshRSS_javascript_Controller extends Minz_ActionController { - public function firstAction () { - $this->view->_useLayout (false); + public function firstAction() { + $this->view->_useLayout(false); } - public function actualizeAction () { + public function actualizeAction() { header('Content-Type: text/javascript; charset=UTF-8'); $feedDAO = FreshRSS_Factory::createFeedDao(); $this->view->feeds = $feedDAO->listFeedsOrderUpdate($this->view->conf->ttl_default); |