diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-15 10:59:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-15 10:59:21 +0000 |
commit | dce07ab353cb71a317296d2566fad3c814bdc6c3 (patch) | |
tree | f1c73422c8163bfb2bb51f2c487660a9537124d5 /modules/simpletest | |
parent | 3cf9f1d29564b94b73fee1a5a8dfe1b4eab1892d (diff) | |
download | brdo-dce07ab353cb71a317296d2566fad3c814bdc6c3.tar.gz brdo-dce07ab353cb71a317296d2566fad3c814bdc6c3.tar.bz2 |
- Patch #684774 by sun: block visibility settings cannot be properly extended.
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/simpletest.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install index 055c9b2c6..903e8dc39 100644 --- a/modules/simpletest/simpletest.install +++ b/modules/simpletest/simpletest.install @@ -46,7 +46,7 @@ function simpletest_requirements($phase) { ); if (!$has_curl) { $requirements['curl']['severity'] = REQUIREMENT_ERROR; - $requirements['curl']['description'] = $t('Simpletest 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')); + $requirements['curl']['description'] = $t('The testing framework 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')); } $requirements['hash'] = array( 'title' => $t('hash'), @@ -54,7 +54,7 @@ function simpletest_requirements($phase) { ); if (!$has_hash) { $requirements['hash']['severity'] = REQUIREMENT_ERROR; - $requirements['hash']['description'] = $t('Simpletest could not be installed because the PHP <a href="@hash_url">hash</a> extension is disabled.', array('@hash_url' => 'http://php.net/manual/en/book.hash.php')); + $requirements['hash']['description'] = $t('The testing framework could not be installed because the PHP <a href="@hash_url">hash</a> extension is disabled.', array('@hash_url' => 'http://php.net/manual/en/book.hash.php')); } $requirements['php_domdocument'] = array( |