diff options
author | friendica <info@friendica.com> | 2012-05-18 17:55:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-18 17:55:11 -0700 |
commit | 4133df62234cc3466f34b8a7d52147a1e422bbc0 (patch) | |
tree | 5ab08718ea4230918eeaa17f0d69d07faed082ff /mod | |
parent | 38217444502aee41d71d90c0c8927999bb1b12e6 (diff) | |
download | volse-hubzilla-4133df62234cc3466f34b8a7d52147a1e422bbc0.tar.gz volse-hubzilla-4133df62234cc3466f34b8a7d52147a1e422bbc0.tar.bz2 volse-hubzilla-4133df62234cc3466f34b8a7d52147a1e422bbc0.zip |
profile change activity link bug
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profiles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profiles.php b/mod/profiles.php index c72a233c2..26fc88765 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -329,7 +329,7 @@ function profile_activity($changed, $value) { if($t == 1 && strlen($value)) { $message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value); - $message .= "\n\n" . sprintf( t(" - Visit %1$s\'s %2$s"), $A, $prof); + $message .= "\n\n" . sprintf( t(' - Visit %1$s\'s %2$s'), $A, $prof); } else $message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes); |