diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-04 10:48:24 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-04 10:48:24 +0100 |
commit | 6995d54a3cc162d87f881f6e206fa356230fd9e8 (patch) | |
tree | ac7e80030e53bc0c91fb6a3757e04e4e65fb1b3b /include | |
parent | d31df715fb988d5f48a3174646c63542c356fb55 (diff) | |
download | volse-hubzilla-6995d54a3cc162d87f881f6e206fa356230fd9e8.tar.gz volse-hubzilla-6995d54a3cc162d87f881f6e206fa356230fd9e8.tar.bz2 volse-hubzilla-6995d54a3cc162d87f881f6e206fa356230fd9e8.zip |
fix wrong variable in sprintf resulting in php warning
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 5ff8b3864..2ce4dacef 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -172,7 +172,7 @@ function localize_item(&$item){ $shortbodyverb = t('doesn\'t like %1$s\'s %2$s'); } - $item['shortlocalize'] = sprintf($bodyverb, $objauthor, $plink); + $item['shortlocalize'] = sprintf($shortbodyverb, $objauthor, $plink); $item['body'] = $item['localize'] = sprintf($bodyverb, $author, $objauthor, $plink); if($Bphoto != "") |