Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
Changed cURL error message
Browse files Browse the repository at this point in the history
Removed calling the user a silly bastard for not installing curl.
  • Loading branch information
J7mbo committed Apr 29, 2013
1 parent abba993 commit 8f9b639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TwitterAPIExchange.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct(array $settings)
{
if (!in_array('curl', get_loaded_extensions()))
{
exit('Install cURL first you silly bastard');
exit('You need to install cURL, see: http://curl.haxx.se/docs/install.html');
}

if (!isset($settings['oauth_access_token'])
Expand Down Expand Up @@ -242,4 +242,4 @@ private function buildAuthorizationHeader($oauth)
return $return;
}

}
}

0 comments on commit 8f9b639

Please sign in to comment.