diff --git a/sites/all/modules/linkedin/linkedin.install b/sites/all/modules/linkedin/linkedin.install
index 499dba2..bb26070 100644
--- a/sites/all/modules/linkedin/linkedin.install
+++ b/sites/all/modules/linkedin/linkedin.install
@@ -67,15 +67,14 @@ function linkedin_uninstall() {
  */
 function linkedin_requirements($phase) {
   $requirements = array();
-  $t = get_t();
-  $has_curl = function_exists('curl_init');
-  $requirements['curl'] = array(
-    'title' => $t('cURL'),
-    'value' => $has_curl ? $t('Enabled') : $t('Not found'),
-  );
-  if (!$has_curl) {
-    $requirements['curl']['severity'] = REQUIREMENT_ERROR;
-    $requirements['curl']['description'] = $t('Linkedin module could not be installed because the PHP <a href="@curl_url">cURL</a> library is not available.', array('@curl_url' => 'http://php.net/manual/en/curl.setup.php'));
+  if ($phase == 'runtime') {
+    $t = get_t();
+    $has_curl = function_exists('curl_init');
+    if (!$has_curl) {
+      $requirements['curl']['severity'] = REQUIREMENT_ERROR;
+      $requirements['curl']['description'] = $t('Linkedin module could not be installed because the PHP <a href="@curl_url">cURL</a> library is not available.', array('@curl_url' => 'http://php.net/manual/en/curl.setup.php'));
+    }
+    
   }
   return $requirements;
 }
