diff options
author | friendica <info@friendica.com> | 2015-02-03 16:03:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-03 16:03:05 -0800 |
commit | 3f50313862f5c2ca9d7118b234b2f154c7fb736a (patch) | |
tree | 9c614f4e9d8ac3402bd2d9fa83564767eb85cc4b /include/text.php | |
parent | 44af22b968643a1aed26fc1831455d16fa26719e (diff) | |
download | volse-hubzilla-3f50313862f5c2ca9d7118b234b2f154c7fb736a.tar.gz volse-hubzilla-3f50313862f5c2ca9d7118b234b2f154c7fb736a.tar.bz2 volse-hubzilla-3f50313862f5c2ca9d7118b234b2f154c7fb736a.zip |
garbage in garbage out
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index d19519779..ef2fc2371 100644 --- a/include/text.php +++ b/include/text.php @@ -1946,9 +1946,9 @@ function find_xchan_in_array($xchan,$arr) { } function get_rel_link($j,$rel) { - if(count($j)) + if(is_array($j) && ($j)) foreach($j as $l) - if($l['rel'] === $rel) + if(array_key_exists('rel',$j) && $l['rel'] === $rel && array_key_exists('href',$l)) return $l['href']; return ''; |