Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-03-08 17:05:28 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-03-15 16:59:05 +0300
commit8806bbe6fee97a8046c9004e68bba23bcc534de1 (patch)
tree9fb6d7066ef322eb762a15f8278b023cf3de5b0d /lib/public
parent7c21fba61f0fee161444b561db1730716e2580c8 (diff)
Allow overwriting isAuthenticated
* Some implementations might check for different things * IT will not change how the current ones work Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/AppFramework/PublicShareController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/AppFramework/PublicShareController.php b/lib/public/AppFramework/PublicShareController.php
index 4548f885133..c7e0e75d0e2 100644
--- a/lib/public/AppFramework/PublicShareController.php
+++ b/lib/public/AppFramework/PublicShareController.php
@@ -109,7 +109,7 @@ abstract class PublicShareController extends Controller {
*
* @since 14.0.0
*/
- final public function isAuthenticated(): bool {
+ public function isAuthenticated(): bool {
// Always authenticated against non password protected shares
if (!$this->isPasswordProtected()) {
return true;