summaryrefslogtreecommitdiff
path: root/controllers/editor.php
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/editor.php')
-rw-r--r--controllers/editor.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/controllers/editor.php b/controllers/editor.php
index 0f4380b..bfe70af 100644
--- a/controllers/editor.php
+++ b/controllers/editor.php
@@ -1,12 +1,11 @@
<?php
$app->get('/editor', function() use($app) {
- if($user=require_login($app)) {
- $html = $app->render('editor.php', [
- 'user' => $user
- ]);
- $app->response()->body($html);
- }
+ $user = require_login($app, false);
+ $html = $app->render('editor.php', [
+ 'user' => $user
+ ]);
+ $app->response()->body($html);
});
$app->post('/editor/publish', function() use($app) {