diff options
author | tailor <cygnus@janrain.com> | 2008-02-19 23:46:01 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2008-02-19 23:46:01 +0000 |
commit | ea2469c5f8fe68b71fef8a2f5eb48b87d3713c5e (patch) | |
tree | 4e88ca37490cc6624f3ee5679aa148cff802c904 | |
parent | fe45ccf6ba76eec0974238198d33a555ed86406c (diff) | |
download | php-openid-ea2469c5f8fe68b71fef8a2f5eb48b87d3713c5e.zip php-openid-ea2469c5f8fe68b71fef8a2f5eb48b87d3713c5e.tar.gz php-openid-ea2469c5f8fe68b71fef8a2f5eb48b87d3713c5e.tar.bz2 |
[project @ Use PATH_SEPARATOR in detect.php (thanks: http://jeroen.hellingman.myopenid.com/)]
-rw-r--r-- | examples/detect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/detect.php b/examples/detect.php index 0d7fc77..51edac6 100644 --- a/examples/detect.php +++ b/examples/detect.php @@ -2,7 +2,7 @@ $path_extra = dirname(dirname(__FILE__)); $path = ini_get('include_path'); -$path = $path_extra . ':' . $path; +$path = $path_extra . PATH_SEPARATOR . $path; ini_set('include_path', $path); define('IS_WINDOWS', strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'); |