From da5e7deb77c758fc5268839c259c495459dbfae8 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Tue, 23 Sep 2014 18:21:16 -0300 Subject: [PATCH] fix typo --- google-plus/connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-plus/connect.php b/google-plus/connect.php index 29ef4f7..48f0930 100644 --- a/google-plus/connect.php +++ b/google-plus/connect.php @@ -6,7 +6,7 @@ $client_id = get_option('social_connect_google_plus_client_id'); $client_secret = get_option('social_connect_google_plus_client_secret'); $redirect_uri = SOCIAL_CONNECT_GOOGLE_PLUS_REDIRECT_URL; -$app_name = printf(__('Login to %s', 'social_connect'), get_option('siteurl')); +$app_name = sprintf(__('Login to %s', 'social_connect'), get_option('siteurl')); if (!empty($client_id) && !empty($client_secret)) { $client = new Google_Client();