From bb2b4f19a4631801540ac170d49d8946e4ebd454 Mon Sep 17 00:00:00 2001 From: Andreas Gohr <andi@splitbrain.org> Date: Fri, 31 Mar 2017 12:07:38 +0200 Subject: [PATCH] fixed Diff action --- inc/Action/Diff.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/inc/Action/Diff.php b/inc/Action/Diff.php index 59ce156ae..0ced9d824 100644 --- a/inc/Action/Diff.php +++ b/inc/Action/Diff.php @@ -16,6 +16,7 @@ class Diff extends AbstractAction { return AUTH_READ; } + /** @inheritdoc */ public function preProcess() { global $INPUT; @@ -26,4 +27,9 @@ class Diff extends AbstractAction { } } + /** @inheritdoc */ + public function tplContent() { + html_diff(); + } + } -- GitLab