diff options
-rw-r--r-- | examples/detect.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/detect.php b/examples/detect.php index 7083b41..0598681 100644 --- a/examples/detect.php +++ b/examples/detect.php @@ -398,9 +398,9 @@ function detect_fetcher($r, &$out) $out .= $r->p('This PHP installation has support for libcurl. Good.'); } else { $out .= $r->p('This PHP installation does not have support for ' . - 'libcurl. Some functionality, such as fetching ' . - 'https:// URLs, will be missing and performance ' . - 'will not be as good.'); + 'libcurl. CURL is not required, but some functionality, ' . + 'such as fetching HTTPS URLs, will be missing and ' . + ' performance will not be as good.'); $lnk = $r->link('http://us3.php.net/manual/en/ref.curl.php'); $out .= $r->p('See ' . $lnk . ' about enabling the libcurl support ' . 'for PHP.'); |