aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Ping.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r--Zotlabs/Module/Ping.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php
index 39f123d21..d05acba6c 100644
--- a/Zotlabs/Module/Ping.php
+++ b/Zotlabs/Module/Ping.php
@@ -263,10 +263,9 @@ class Ping extends \Zotlabs\Web\Controller {
if($t) {
foreach($t as $tt) {
$message = trim(strip_tags(bbcode($tt['msg'])));
- $count = 1;
if(strpos($message, $tt['xname']) === 0)
- $message = str_replace($tt['xname'], '', $message, $count);
+ $message = substr($message, strlen($tt['xname']) + 1);
$notifs[] = array(
'notify_link' => z_root() . '/notify/view/' . $tt['id'],