grinchy wrote:
That doesn't get added to the code. That is a mambot tag that get's inserted into content.
ok I worked out my solution
added to code.
in interpreter.fireboard.inc.php look for
| Code: |
case 'img':
if($between) {
$task->autolink_disable--; # continue autolink conversion
$tag_new = "<img src='".$between."' />";
return TAGPARSER_RET_REPLACED;
}
|
add {multithumb} so it looks like this
| Code: |
case 'img':
if($between) {
$task->autolink_disable--; # continue autolink conversion
$tag_new = "{multithumb}<img src='".$between."' />";
return TAGPARSER_RET_REPLACED;
}
|
.
Well I think it is working
looks like it.
EDIT:
only problem is that this method does not work when you Reply. It shows the {multithumb} and the full image in Topic History.
may be someone has some thoughts on this?