summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-11-15 16:38:18 -0800
committerBrion Vibber <brion@pobox.com>2010-11-15 16:38:18 -0800
commitfdcaac365354fb7315263373bae6094eab6aa3c8 (patch)
tree3291593e338d807e9ea16dc9e8666439c962ef0b
parent5fdcba472b8673380248ab0d5dce45967f774caa (diff)
Tweak remote profile action: hide stats from sidebar, tweak wording on remote notice
-rw-r--r--plugins/ModPlus/remoteprofileaction.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/ModPlus/remoteprofileaction.php b/plugins/ModPlus/remoteprofileaction.php
index 5b25da170..caa5e6fbf 100644
--- a/plugins/ModPlus/remoteprofileaction.php
+++ b/plugins/ModPlus/remoteprofileaction.php
@@ -59,7 +59,8 @@ class RemoteProfileAction extends ShowstreamAction
$url = $this->profile->profileurl;
$host = parse_url($url, PHP_URL_HOST);
$markdown = sprintf(
- _m('This profile is registered on another site; see [the profile page on %s](%s).'),
+ _m('This remote profile is registered on another site; see [%s\'s original profile page on %s](%s).'),
+ $this->profile->nickname,
$host,
$url);
$html = common_markup_to_html($markdown);
@@ -97,4 +98,9 @@ class RemoteProfileAction extends ShowstreamAction
// skip tag cloud
}
+ function showStatistics()
+ {
+ // skip
+ }
+
} \ No newline at end of file