diff options
author | friendica <info@friendica.com> | 2012-03-18 03:59:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-18 03:59:49 -0700 |
commit | 09ed17df99dd3acebeba814ff19c43c6c4a512f8 (patch) | |
tree | f3c256fb748d21440ea19a25fd2232c626fc1122 /include/conversation.php | |
parent | 4bb280bc2f7068f0c1199e9f8119e25278aa3bcb (diff) | |
parent | 72894b0e91515461717c584879e5a4331841104a (diff) | |
download | volse-hubzilla-09ed17df99dd3acebeba814ff19c43c6c4a512f8.tar.gz volse-hubzilla-09ed17df99dd3acebeba814ff19c43c6c4a512f8.tar.bz2 volse-hubzilla-09ed17df99dd3acebeba814ff19c43c6c4a512f8.zip |
Merge pull request #146 from CatoTH/master
replace split() by explode(); split is deprecated
Diffstat (limited to 'include/conversation.php')
-rwxr-xr-x | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 8ca484c9e..e9f024c27 100755 --- a/include/conversation.php +++ b/include/conversation.php @@ -649,7 +649,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // template to use to render item (wall, walltowall, search) 'template' => $template, - 'type' => implode("",array_slice(split("/",$item['verb']),-1)), + 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), 'tags' => $tags, 'body' => template_escape($body), 'text' => strip_tags(template_escape($body)), |