From be6922bd200fa86e3809a0f69b2edc853cdb681d Mon Sep 17 00:00:00 2001 From: djmaze Date: Wed, 8 Jul 2020 16:48:35 +0200 Subject: [PATCH] Bugfix: RunAdditionalPart() incorrect return type --- README.md | 2 ++ rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a97c3bf2..0072c086c 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,9 @@ This fork has modifications for: * PHP 7.3+ required * PHP mbstring extension required * PHP replaced pclZip with ZipArchive +* PHP yaml extension else use the old Spyc * CRLF => LF line endings * Use gulp-terser instead of gulp-uglify * ES2015 (without polyfills) * No JS nanoscroll +* Auth failed attempts written to syslog diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php index b75ee83fb..474269c12 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php @@ -392,7 +392,7 @@ class Manager return $this; } - public function RunAdditionalPart(string $sActionName, array $aParts = array()) : self + public function RunAdditionalPart(string $sActionName, array $aParts = array()) : bool { $bResult = false; if ($this->bIsEnabled)