From bc041921869e01a78e9a33d9a2e2436ce049334c Sun, 29 Jan 2012 18:08:36 +0100 From: hass Date: Sun, 29 Jan 2012 18:08:17 +0100 Subject: [PATCH] Wrong placeholder used in translatable strings. diff --git a/httprl.install b/httprl.install index 997cc30..5660e4d 100644 --- a/httprl.install +++ b/httprl.install @@ -82,7 +82,7 @@ 'title' => $t('HTTPRL - Core'), 'severity' => REQUIREMENT_ERROR, 'value' => $t('drupal_http_request()'), - 'description' => $t('Your system or network configuration does not allow Drupal to access web pages. This could be due to your webserver configuration or PHP settings. Debug info: !info
For more info go here: "HTTP request status Fails" error', array( + 'description' => $t('Your system or network configuration does not allow Drupal to access web pages. This could be due to your webserver configuration or PHP settings. Debug info: !debug
For more info go here: "HTTP request status Fails" error', array( '!link' => 'http://drupal.org/node/588186', '!debug' => '
' . print_r($_httprl['install']['debug'], TRUE) . '
', ) @@ -97,7 +97,7 @@ 'title' => $t('HTTPRL - Blocking'), 'severity' => REQUIREMENT_ERROR, 'value' => $t('Problem with stream_select()'), - 'description' => $t('This server can not issue self http requests with stream_select(). Debug info: !info
', array( + 'description' => $t('This server can not issue self http requests with stream_select(). Debug info: !debug
', array( '!debug' => '
' . print_r($_httprl['install']['debug'], TRUE) . '
', ) ), @@ -111,7 +111,7 @@ 'title' => $t('HTTPRL - Non Blocking'), 'severity' => REQUIREMENT_WARNING, 'value' => $t('This server does not handle hanging connections.'), - 'description' => $t('Using non blocking mode on this server may not work correctly. Debug info: !info
', array( + 'description' => $t('Using non blocking mode on this server may not work correctly. Debug info: !debug
', array( '!debug' => '
' . print_r($_httprl['install']['debug'], TRUE) . '
', ) ),