summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc9
1 files changed, 8 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 71e4da38c..95cac35dc 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -979,7 +979,14 @@ function format_name($object) {
** the true author of the content.
*/
- $output = $object->name;
+ if ($object->homepage) {
+ $output = "<a href=\"$object->homepage\">$object->name</a>";
+ }
+ else {
+ $output = $object->name;
+ }
+
+ $output .= ' ('. t('not verified') .')';
}
else {
$output = t(variable_get("anonymous", "Anonymous"));