From 1b0e85daa1a374ea82b20927dd4b92a2fdcd1f6f Mon Sep 17 00:00:00 2001 From: Michael Braun <michael-dev@fami-braun.de> Date: Fri, 17 Aug 2018 05:36:49 +0000 Subject: [PATCH] Fix Locked-Page not showing page content While refactoring into inc/Action/Locked, the fall-through call to html_edit was missed. See 952acff90985f4576de0558a58a167372392e21c This removed the edit box from the locked page, which is needed for users to get the page source or by etherpad lite plugin. This change re-adds the call to html_edit for the locked action. Signed-off-by: Michael Braun <michael-dev@fami-braun.de> --- inc/Action/Locked.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/Action/Locked.php b/inc/Action/Locked.php index 3ff2c5b80..41866e341 100644 --- a/inc/Action/Locked.php +++ b/inc/Action/Locked.php @@ -19,6 +19,7 @@ class Locked extends AbstractAction { /** @inheritdoc */ public function tplContent() { html_locked(); + html_edit(); } } -- GitLab