diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-01 16:57:58 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-01 16:57:58 -0800 |
commit | e30af99873ceda83bb4e9a2e221da894e8363489 (patch) | |
tree | 4e1db1ce277b4643c0e2610adcb94fe4ada29eb3 /plugins/OStatus/lib | |
parent | 45e8819c1b9cc618e9b2d6678b0ff14c653a09d3 (diff) | |
parent | 493b5479c15f0e135054fd6b961e50e690077eda (diff) |
Merge branch 'work' into testing
Diffstat (limited to 'plugins/OStatus/lib')
-rw-r--r-- | plugins/OStatus/lib/xrd.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/OStatus/lib/xrd.php b/plugins/OStatus/lib/xrd.php index 1de065db9..85df26c54 100644 --- a/plugins/OStatus/lib/xrd.php +++ b/plugins/OStatus/lib/xrd.php @@ -161,20 +161,20 @@ class XRD function saveLink($doc, $link) { $link_element = $doc->createElement('Link'); - if ($link['rel']) { + if (!empty($link['rel'])) { $link_element->setAttribute('rel', $link['rel']); } - if ($link['type']) { + if (!empty($link['type'])) { $link_element->setAttribute('type', $link['type']); } - if ($link['href']) { + if (!empty($link['href'])) { $link_element->setAttribute('href', $link['href']); } - if ($link['template']) { + if (!empty($link['template'])) { $link_element->setAttribute('template', $link['template']); } - if (is_array($link['title'])) { + if (!empty($link['title']) && is_array($link['title'])) { foreach($link['title'] as $title) { $title = $doc->createElement('Title', $title); $link_element->appendChild($title); |