aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Action/Source.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Action/Source.php')
-rw-r--r--inc/Action/Source.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/Action/Source.php b/inc/Action/Source.php
index 92b38552b..0d2f822e4 100644
--- a/inc/Action/Source.php
+++ b/inc/Action/Source.php
@@ -2,6 +2,7 @@
namespace dokuwiki\Action;
+use dokuwiki\Ui\Editor;
use dokuwiki\Ui;
/**
@@ -35,7 +36,6 @@ class Source extends AbstractAction
/** @inheritdoc */
public function tplContent()
{
- (new Ui\Editor)->show();
+ (new Editor())->show();
}
-
}