From 14c3112a08406e9b1b42ef34f83f784562b96cf8 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Sun, 17 Jul 2016 18:51:18 +0200 Subject: [PATCH] Corrected library name (was causing an error). --- src/application/controllers/Google.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application/controllers/Google.php b/src/application/controllers/Google.php index 7b881545..f8eac117 100644 --- a/src/application/controllers/Google.php +++ b/src/application/controllers/Google.php @@ -43,7 +43,7 @@ class Google extends CI_Controller { $_SESSION['oauth_provider_id'] = $provider_id; // 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()); }