Updated google auth url (work without mod_rewrite)

This commit is contained in:
alextselegidis 2015-05-20 23:01:21 +02:00
parent 1793dd2eae
commit da1ce168b3
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class Google_Sync {
$this->client->setClientId(Config::GOOGLE_CLIENT_ID);
$this->client->setClientSecret(Config::GOOGLE_CLIENT_SECRET);
$this->client->setDeveloperKey(Config::GOOGLE_API_KEY);
$this->client->setRedirectUri($this->CI->config->item('base_url') . '/google/oauth_callback');
$this->client->setRedirectUri($this->CI->config->item('base_url') . '/index.php/google/oauth_callback');
$this->service = new Google_CalendarService($this->client);
}