diff options
author | Kartikaya Gupta <kats@calvin.staktrace.com> | 2011-10-02 17:37:14 -0700 |
---|---|---|
committer | Kartikaya Gupta <kats@calvin.staktrace.com> | 2011-10-02 17:37:14 -0700 |
commit | 8de3a68f8baae52789bd9f3fce7999087ab4b1dc (patch) | |
tree | e42f8c276845afe48031e78c69dde961e2de35cb /examples/detect.php | |
parent | bc5f875d4b4ec524882c963f7f34859ed974e0e4 (diff) | |
download | php-openid-8de3a68f8baae52789bd9f3fce7999087ab4b1dc.zip php-openid-8de3a68f8baae52789bd9f3fce7999087ab4b1dc.tar.gz php-openid-8de3a68f8baae52789bd9f3fce7999087ab4b1dc.tar.bz2 |
Remove angle brackets from around a URL, since if the output is in text/html format the URL doesn't get printed.
Diffstat (limited to 'examples/detect.php')
-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 123e496..dc398a5 100644 --- a/examples/detect.php +++ b/examples/detect.php @@ -455,7 +455,7 @@ function detect_fetcher($r, &$out) if ($url == $fetch_url) { $msg = 'The redirected URL was not returned.'; } else { - $msg = 'An unexpected URL was returned: <' . $url . '>.'; + $msg = 'An unexpected URL was returned: ' . $url . '.'; } $parts[] = $r->b($msg); } |