Corrected library name (was causing an error).

This commit is contained in:
Alex Tselegidis 2016-07-17 18:51:18 +02:00
parent 3bba2269b8
commit 14c3112a08
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class Google extends CI_Controller {
$_SESSION['oauth_provider_id'] = $provider_id; $_SESSION['oauth_provider_id'] = $provider_id;
// Redirect browser to google user content page. // Redirect browser to google user content page.
$this->load->library('Google_Sync'); $this->load->library('Google_sync');
header('Location: ' . $this->google_sync->get_auth_url()); header('Location: ' . $this->google_sync->get_auth_url());
} }