I'm experiencing this issue with Joomla! 3.4.8 and Komento 2.0.5.
If there are multiple images in one comment, the BBCode doesn't get replaced correctly. For example, a comment containing
Example: here
The pattern in helpers/comment.php, line 275 seems to be to greedy, grabbing everything between the first [ img ] and the last [ /img ].
If there are multiple images in one comment, the BBCode doesn't get replaced correctly. For example, a comment containing
[img ]alpha.jpg[/img ][img ]beta.jpg[/img ]
leads to this output:<img src="/alpha.jpg[/img][img]beta.jpg" />
Example: here
The pattern in helpers/comment.php, line 275 seems to be to greedy, grabbing everything between the first [ img ] and the last [ /img ].