summaryrefslogtreecommitdiff
path: root/actions/repliesrss.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/repliesrss.php')
-rw-r--r--actions/repliesrss.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/repliesrss.php b/actions/repliesrss.php
index 3689ea1f8..9652ae9ea 100644
--- a/actions/repliesrss.php
+++ b/actions/repliesrss.php
@@ -25,7 +25,7 @@ require_once(INSTALLDIR.'/lib/rssaction.php');
class RepliesrssAction extends Rss10Action {
- var $user = NULL;
+ var $user = null;
function init() {
$nickname = $this->trimmed('nickname');
@@ -71,9 +71,9 @@ class RepliesrssAction extends Rss10Action {
$user = $this->user;
$profile = $user->getProfile();
if (!$profile) {
- return NULL;
+ return null;
}
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
- return ($avatar) ? $avatar->url : NULL;
+ return ($avatar) ? $avatar->url : null;
}
} \ No newline at end of file