Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Dorn committed Oct 5, 2014
1 parent fb958be commit 7fdd3f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
// Google Analytics API
if(isset(PhpReports::$config['ga_api'])) {
$ga_client = new Google_Client();
$ga_client->setApplicationName($config['ga_api']['applicationName']);
$ga_client->setClientId($config['ga_api']['clientId']);
$ga_client->setClientSecret($config['ga_api']['clientSecret']);
$ga_client->setRedirectUri($config['ga_api']['redirectUri']);
$ga_client->setApplicationName(PhpReports::$config['ga_api']['applicationName']);
$ga_client->setClientId(PhpReports::$config['ga_api']['clientId']);
$ga_client->setClientSecret(PhpReports::$config['ga_api']['clientSecret']);
$ga_client->setRedirectUri(PhpReports::$config['ga_api']['redirectUri']);
$ga_service = new Google_Service_Analytics($ga_client);
$ga_client->addScope(Google_Service_Analytics::ANALYTICS);
if(isset($_GET['code'])) {
Expand Down

0 comments on commit 7fdd3f1

Please sign in to comment.