From 5110d5823bac6b89c22f2fc354c0feabaa03ea5a Mon Sep 17 00:00:00 2001 From: Evan Solomon Date: Mon, 20 Aug 2012 11:24:34 -0700 Subject: [PATCH] Fix typo in boolean false --- github-contributors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-contributors.php b/github-contributors.php index 9a0e9f7..9694f1a 100644 --- a/github-contributors.php +++ b/github-contributors.php @@ -54,7 +54,7 @@ function pw_get_github_contributors_query( $username, $repo, $transient_key ) { if ( is_wp_error( $response ) ) { set_transient( $transient_key, '', 3600 ); - return flase; + return false; } $contributors = json_decode( wp_remote_retrieve_body( $response ) );