diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-19 15:54:16 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-19 15:54:16 -0700 |
commit | a02e5b302b47cf7a28c2322700a8ec72d31ab22c (patch) | |
tree | 8d9db99eb2f1d4a6749b7f8ad611d908caf2a140 /plugins/OStatus/lib | |
parent | 7e2af3dcae956c7490df74be8d94fa09a4bab673 (diff) |
Avoid notices for accessing undefined array indices in hcard processing
Diffstat (limited to 'plugins/OStatus/lib')
-rw-r--r-- | plugins/OStatus/lib/discoveryhints.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/OStatus/lib/discoveryhints.php b/plugins/OStatus/lib/discoveryhints.php index 9102788e6..80cfbbf15 100644 --- a/plugins/OStatus/lib/discoveryhints.php +++ b/plugins/OStatus/lib/discoveryhints.php @@ -102,7 +102,7 @@ class DiscoveryHints { if (array_key_exists('url', $hcard)) { if (is_string($hcard['url'])) { $hints['homepage'] = $hcard['url']; - } else if (is_array($hcard['url'])) { + } else if (is_array($hcard['url']) && !empty($hcard['url'])) { // HACK get the last one; that's how our hcards look $hints['homepage'] = $hcard['url'][count($hcard['url'])-1]; } @@ -231,7 +231,7 @@ class DiscoveryHints { // If it's got a scheme, use it - if ($parts['scheme'] != '') { + if (!empty($parts['scheme'])) { return $rel; } |