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 | |
| 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')
| -rw-r--r-- | controllers/auth.php | 3 | ||||
| -rw-r--r-- | controllers/controllers.php | 20 | 
2 files changed, 14 insertions, 9 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); diff --git a/controllers/controllers.php b/controllers/controllers.php index b444676..96f609a 100644 --- a/controllers/controllers.php +++ b/controllers/controllers.php @@ -72,7 +72,8 @@ $app->get('/new', function() use($app) {        'response_date' => $user->last_micropub_response_date,        'syndication_targets' => json_decode($user->syndication_targets, true),        'test_response' => $test_response, -      'location_enabled' => $user->location_enabled +      'location_enabled' => $user->location_enabled, +      'authorizing' => false      ));      $app->response()->body($html);    } @@ -103,7 +104,8 @@ $app->get('/bookmark', function() use($app) {        'bookmark_content' => $content,        'bookmark_tags' => $tags,        'token' => generate_login_token(), -      'syndication_targets' => json_decode($user->syndication_targets, true) +      'syndication_targets' => json_decode($user->syndication_targets, true), +      'authorizing' => false      ));      $app->response()->body($html);    } @@ -121,7 +123,8 @@ $app->get('/favorite', function() use($app) {      $html = render('new-favorite', array(        'title' => 'New Favorite',        'url' => $url, -      'token' => generate_login_token() +      'token' => generate_login_token(), +      'authorizing' => false      ));      $app->response()->body($html);    } @@ -139,7 +142,8 @@ $app->get('/repost', function() use($app) {      $html = render('new-repost', array(        'title' => 'New Repost',        'url' => $url, -      'token' => generate_login_token() +      'token' => generate_login_token(), +      'authorizing' => false      ));      $app->response()->body($html);    } @@ -160,17 +164,17 @@ $app->get('/creating-a-token-endpoint', function() use($app) {    $app->redirect('http://indiewebcamp.com/token-endpoint', 301);  });  $app->get('/creating-a-micropub-endpoint', function() use($app) { -  $html = render('creating-a-micropub-endpoint', array('title' => 'Creating a Micropub Endpoint')); +  $html = render('creating-a-micropub-endpoint', array('title' => 'Creating a Micropub Endpoint', 'authorizing' => false));    $app->response()->body($html);  });  $app->get('/docs', function() use($app) { -  $html = render('docs', array('title' => 'Documentation')); +  $html = render('docs', array('title' => 'Documentation', 'authorizing' => false));    $app->response()->body($html);  });  $app->get('/privacy', function() use($app) { -  $html = render('privacy', array('title' => 'Quill Privacy Policy')); +  $html = render('privacy', array('title' => 'Quill Privacy Policy', 'authorizing' => false));    $app->response()->body($html);  }); @@ -217,7 +221,7 @@ $app->get('/add-to-home', function() use($app) {  $app->get('/settings', function() use($app) {    if($user=require_login($app)) { -    $html = render('settings', array('title' => 'Settings', 'include_facebook' => true)); +    $html = render('settings', array('title' => 'Settings', 'include_facebook' => true, 'authorizing' => false));      $app->response()->body($html);    }  }); | 
