From 2216940f008807f8335f66da18edbc5c32176e9f Mon Sep 17 00:00:00 2001 From: Luc SANCHEZ <4697568+ColonelMoutarde@users.noreply.github.com> Date: Sat, 21 Jan 2023 23:19:26 +0100 Subject: type hinting javascriptController (#5032) --- app/Controllers/javascriptController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/Controllers/javascriptController.php') diff --git a/app/Controllers/javascriptController.php b/app/Controllers/javascriptController.php index c2a5cb872..b4e769738 100755 --- a/app/Controllers/javascriptController.php +++ b/app/Controllers/javascriptController.php @@ -1,11 +1,11 @@ view->_layout(false); } - public function actualizeAction() { + public function actualizeAction(): void { header('Content-Type: application/json; charset=UTF-8'); Minz_Session::_param('actualize_feeds', false); @@ -16,7 +16,7 @@ class FreshRSS_javascript_Controller extends FreshRSS_ActionController { $this->view->feeds = $feedDAO->listFeedsOrderUpdate(FreshRSS_Context::$user_conf->ttl_default); } - public function nbUnreadsPerFeedAction() { + public function nbUnreadsPerFeedAction(): void { header('Content-Type: application/json; charset=UTF-8'); $catDAO = FreshRSS_Factory::createCategoryDao(); $this->view->categories = $catDAO->listCategories(true, false); @@ -25,7 +25,7 @@ class FreshRSS_javascript_Controller extends FreshRSS_ActionController { } //For Web-form login - public function nonceAction() { + public function nonceAction(): void { header('Content-Type: application/json; charset=UTF-8'); header('Last-Modified: ' . gmdate('D, d M Y H:i:s \G\M\T')); header('Expires: 0'); -- cgit v1.2.3 From 9b5de54a9c96110b42f71681aa635e2e2c3b8756 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 3 Feb 2023 14:34:47 +0100 Subject: Remove -x on some files not needing it (#5065) --- app/Controllers/configureController.php | 0 app/Controllers/entryController.php | 0 app/Controllers/feedController.php | 0 app/Controllers/indexController.php | 0 app/Controllers/javascriptController.php | 0 app/i18n/es/admin.php | 0 app/i18n/es/conf.php | 0 app/i18n/es/feedback.php | 0 app/i18n/es/gen.php | 0 app/i18n/es/index.php | 0 app/i18n/es/install.php | 0 app/i18n/es/sub.php | 0 lib/SimplePie/SimplePie/Registry.php | 0 p/i/index.php | 0 p/themes/icons/look.svg | 0 15 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 app/Controllers/configureController.php mode change 100755 => 100644 app/Controllers/entryController.php mode change 100755 => 100644 app/Controllers/feedController.php mode change 100755 => 100644 app/Controllers/indexController.php mode change 100755 => 100644 app/Controllers/javascriptController.php mode change 100755 => 100644 app/i18n/es/admin.php mode change 100755 => 100644 app/i18n/es/conf.php mode change 100755 => 100644 app/i18n/es/feedback.php mode change 100755 => 100644 app/i18n/es/gen.php mode change 100755 => 100644 app/i18n/es/index.php mode change 100755 => 100644 app/i18n/es/install.php mode change 100755 => 100644 app/i18n/es/sub.php mode change 100755 => 100644 lib/SimplePie/SimplePie/Registry.php mode change 100755 => 100644 p/i/index.php mode change 100755 => 100644 p/themes/icons/look.svg (limited to 'app/Controllers/javascriptController.php') diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php old mode 100755 new mode 100644 diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php old mode 100755 new mode 100644 diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php old mode 100755 new mode 100644 diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php old mode 100755 new mode 100644 diff --git a/app/Controllers/javascriptController.php b/app/Controllers/javascriptController.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/admin.php b/app/i18n/es/admin.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/conf.php b/app/i18n/es/conf.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/feedback.php b/app/i18n/es/feedback.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/gen.php b/app/i18n/es/gen.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/index.php b/app/i18n/es/index.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/install.php b/app/i18n/es/install.php old mode 100755 new mode 100644 diff --git a/app/i18n/es/sub.php b/app/i18n/es/sub.php old mode 100755 new mode 100644 diff --git a/lib/SimplePie/SimplePie/Registry.php b/lib/SimplePie/SimplePie/Registry.php old mode 100755 new mode 100644 diff --git a/p/i/index.php b/p/i/index.php old mode 100755 new mode 100644 diff --git a/p/themes/icons/look.svg b/p/themes/icons/look.svg old mode 100755 new mode 100644 -- cgit v1.2.3