Skip to content

Commit

Permalink
Fix Error of Facebook auth and not only by loading stuff in endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
gelinger777 committed Mar 27, 2016
1 parent 453d393 commit 3739a5c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions application/controllers/account/Connect_end.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ class Connect_end extends CI_Controller
function __construct()
{
parent::__construct();


// Load the necessary stuff...
$this->load->helper(array('language', 'account/ssl', 'url'));
$this->load->library(array('account/Authentication', 'account/Authorization', 'account/Hybrid_auth_lib'));
$this->load->model(array('account/Account_model', 'account/Account_details_model', 'account/Account_providers_model'));
$this->load->language(array('general', 'account/connect_third_party'));
}

/**
Expand Down

0 comments on commit 3739a5c

Please sign in to comment.