diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:42:27 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:42:27 -0700 |
commit | 0c27b5bdd561aa27e1138f4fdc2be04bd828ff69 (patch) | |
tree | 1358a7038fb21a604c503d410d7607fca27b8bc1 /controllers/auth.php | |
parent | 91307d4a362a8fab0022aba19ab74bec9cb46f8f (diff) | |
parent | 6484e1f2e0ed605c23b619b3179b1bf64a690100 (diff) |
Merge pull request #21 from jeena/auth-fix
Adds authorizing false so it would not show the Savant3:: error
Diffstat (limited to 'controllers/auth.php')
-rw-r--r-- | controllers/auth.php | 3 |
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); |