summaryrefslogtreecommitdiff
path: root/controllers/auth.php
diff options
context:
space:
mode:
authorJeena <spam@jeenaparadies.net>2015-07-15 19:26:23 -0700
committerJeena <spam@jeenaparadies.net>2015-07-24 20:55:04 +0200
commit6484e1f2e0ed605c23b619b3179b1bf64a690100 (patch)
tree1358a7038fb21a604c503d410d7607fca27b8bc1 /controllers/auth.php
parent91307d4a362a8fab0022aba19ab74bec9cb46f8f (diff)
Added authorizing false so it would not show the Savant3:: error
Diffstat (limited to 'controllers/auth.php')
-rw-r--r--controllers/auth.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/controllers/auth.php b/controllers/auth.php
index 3611416..33baa3e 100644
--- a/controllers/auth.php
+++ b/controllers/auth.php
@@ -64,7 +64,8 @@ $app->get('/', function($format='html') use($app) {
ob_start();
render('index', array(
'title' => 'Quill',
- 'meta' => ''
+ 'meta' => '',
+ 'authorizing' => false
));
$html = ob_get_clean();
$res->body($html);