aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-06 02:07:10 -0800
committerfriendica <info@friendica.com>2015-02-06 02:07:10 -0800
commit7edab476587715f5c3219048c06c0afd9e8936dc (patch)
treef5f63cc4a5f04723b1166c8170c518d5fc069249 /include
parente7a68eaef002a9263d20076bcbe6b4c93378255f (diff)
downloadvolse-hubzilla-7edab476587715f5c3219048c06c0afd9e8936dc.tar.gz
volse-hubzilla-7edab476587715f5c3219048c06c0afd9e8936dc.tar.bz2
volse-hubzilla-7edab476587715f5c3219048c06c0afd9e8936dc.zip
get_rel_link broken - also weekly doc updates
Diffstat (limited to 'include')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index ef2fc2371..3d4e9cd01 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1948,7 +1948,7 @@ function find_xchan_in_array($xchan,$arr) {
function get_rel_link($j,$rel) {
if(is_array($j) && ($j))
foreach($j as $l)
- if(array_key_exists('rel',$j) && $l['rel'] === $rel && array_key_exists('href',$l))
+ if(array_key_exists('rel',$l) && $l['rel'] === $rel && array_key_exists('href',$l))
return $l['href'];
return '';