diff options
Diffstat (limited to 'inc/Action/Diff.php')
-rw-r--r-- | inc/Action/Diff.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/Action/Diff.php b/inc/Action/Diff.php index 1409b246b..31024b6cd 100644 --- a/inc/Action/Diff.php +++ b/inc/Action/Diff.php @@ -34,7 +34,8 @@ class Diff extends AbstractAction /** @inheritdoc */ public function tplContent() { - (new Ui\Diff())->show(); + global $INFO; + (new Ui\PageDiff($INFO['id']))->preference('showIntro', true)->show(); } } |