diff --git a/oauthconnector.admin.inc b/oauthconnector.admin.inc
index 034ba6b..d6f0340 100644
--- a/oauthconnector.admin.inc
+++ b/oauthconnector.admin.inc
@@ -730,11 +730,11 @@ function oauthconnector_presets() {
   );
 
 
-  $google_plus = new stdClass;
-  $google_plus->name = '';
-  $google_plus->title = 'Google+';
-  $google_plus->url = 'https://accounts.google.com';
-  $google_plus->consumer_advanced = array(
+  $google = new stdClass;
+  $google->name = '';
+  $google->title = 'Google+';
+  $google->url = 'https://accounts.google.com';
+  $google->consumer_advanced = array(
     'oauth2' => 1,
     'signature method' => 'HMAC-SHA1',
     'authentication realm' => 'authorization_code',
@@ -743,7 +743,7 @@ function oauthconnector_presets() {
     'authorization endpoint' => '/o/oauth2/auth',
     'access token endpoint' => '/o/oauth2/token',
   );
-  $google_plus->mapping = array(
+  $google->mapping = array(
     'fields' => array(
       'uid' => array(
         'resource' => 'https://www.googleapis.com/oauth2/v1/userinfo',
@@ -780,9 +780,9 @@ function oauthconnector_presets() {
       'data' => $facebook,
       'name' => 'Facebook',
     ),
-    'google_plus' => array (
-      'data' => $google_plus,
-      'name' => 'Google+',
+    'google' => array (
+      'data' => $google,
+      'name' => 'Google',
     ),
   );
   drupal_alter('oauthconnector_presets', $presets);
