summaryrefslogtreecommitdiffstats
path: root/examples/detect.php
diff options
context:
space:
mode:
authorKartikaya Gupta <kats@calvin.staktrace.com>2011-10-02 17:37:14 -0700
committerKartikaya Gupta <kats@calvin.staktrace.com>2011-10-02 17:37:14 -0700
commit8de3a68f8baae52789bd9f3fce7999087ab4b1dc (patch)
treee42f8c276845afe48031e78c69dde961e2de35cb /examples/detect.php
parentbc5f875d4b4ec524882c963f7f34859ed974e0e4 (diff)
downloadphp-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.php2
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);
}