diff options
author | Hubzilla <hubzilla@hz.macgirvin.com> | 2017-01-20 12:03:46 -0800 |
---|---|---|
committer | Hubzilla <hubzilla@hz.macgirvin.com> | 2017-01-20 12:03:46 -0800 |
commit | ece1dd1d7edc800085def93e50efc25a3dda55a7 (patch) | |
tree | 5fb0f7c315b2a001ecbb99117e22bbf4ff22faa4 /Zotlabs | |
parent | f57926d9ece52df0208695bdf48b918444448ed1 (diff) | |
download | volse-hubzilla-ece1dd1d7edc800085def93e50efc25a3dda55a7.tar.gz volse-hubzilla-ece1dd1d7edc800085def93e50efc25a3dda55a7.tar.bz2 volse-hubzilla-ece1dd1d7edc800085def93e50efc25a3dda55a7.zip |
js errors with raw message-id, string update
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index adf3e318d..0ee8e6680 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -409,7 +409,7 @@ class ThreadItem { 'comment' => $this->get_comment_box($indent), 'previewing' => ($conv->is_preview() ? ' preview ' : ''), 'wait' => t('Please wait'), - 'submid' => base64_encode(substr($item['mid'],0,32)), + 'submid' => str_replace(['+','='], ['',''], base64_encode(substr($item['mid'],0,32))), 'thread_level' => $thread_level ); |