diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-17 18:56:33 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-17 18:56:33 +0200 |
commit | dcd636f7be5b3f2f6fa32bc77cec4230e5bfcd2d (patch) | |
tree | d80ebe62491a4289f058b945835dc85d6e197d69 /Zotlabs/Module/Ping.php | |
parent | 83e7d89f7e2cb8be606d9c8624e3899c0dcaac29 (diff) | |
download | volse-hubzilla-dcd636f7be5b3f2f6fa32bc77cec4230e5bfcd2d.tar.gz volse-hubzilla-dcd636f7be5b3f2f6fa32bc77cec4230e5bfcd2d.tar.bz2 volse-hubzilla-dcd636f7be5b3f2f6fa32bc77cec4230e5bfcd2d.zip |
fix closing parenthesis in wrong spot
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r-- | Zotlabs/Module/Ping.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 9372866d7..87f9ee78a 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -285,10 +285,10 @@ class Ping extends \Zotlabs\Web\Controller { intval(local_channel()) ); - $b64mid = ((strpos($r[0]['thr_parent'], 'b64.' === 0)) ? $r[0]['thr_parent'] : 'b64.' . base64url_encode($r[0]['thr_parent'])); + $b64mid = ((strpos($r[0]['thr_parent'], 'b64.') === 0) ? $r[0]['thr_parent'] : 'b64.' . base64url_encode($r[0]['thr_parent'])); } else { - $b64mid = ((strpos($mid, 'b64.' === 0)) ? $mid : 'b64.' . base64url_encode($mid)); + $b64mid = ((strpos($mid, 'b64.') === 0) ? $mid : 'b64.' . base64url_encode($mid)); } $notifs[] = array( |