diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index cca50e301..9de016ab3 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1551,7 +1551,7 @@ function theme_username($object) { // not registered members of the site (e.g. mailing list or news // aggregator modules). This clause enables modules to display // the true author of the content. - if ($object->homepage) { + if (!empty($object->homepage)) { $output = l($object->name, $object->homepage, array('rel' => 'nofollow')); } else { |