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