diff options
author | Zach Copley <zach@status.net> | 2010-02-22 01:21:34 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-02-22 01:21:34 -0800 |
commit | 47300a2ae9a51108fbf59a57cf5ab6e8867b54a6 (patch) | |
tree | a3f6f6100deb25e8a6ae35aa2130a3be0c310201 /lib/atom10feed.php | |
parent | ca2a88545d353f0e887f48fe0e3bd43b505031ca (diff) |
Upgrade profile-based activity noun to have more complete set of
profile fields
Diffstat (limited to 'lib/atom10feed.php')
-rw-r--r-- | lib/atom10feed.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/atom10feed.php b/lib/atom10feed.php index 5e17b20d3..8842840d5 100644 --- a/lib/atom10feed.php +++ b/lib/atom10feed.php @@ -109,11 +109,11 @@ class Atom10Feed extends XMLStringer ); } - if (!is_null($uri)) { + if (isset($uri)) { $xs->element('uri', null, $uri); } - if (!is_null(email)) { + if (isset($email)) { $xs->element('email', null, $email); } |