ElkArte Community

General => Chit Chat => Topic started by: radu81 on September 26, 2016, 03:12:02 am

Title: Test inline attached image into quote
Post by: radu81 on September 26, 2016, 03:12:02 am
Inline  image
(Link-4171)

some text...
Title: Re: Test inline attached image into quote
Post by: radu81 on September 26, 2016, 03:12:24 am
test quoted image:

Quote from: radu81 – Inline  image
[attach]4171[/attach]

some text...
Title: Re: Test inline attached image into quote
Post by: emanuele on September 26, 2016, 07:13:00 am
/me smells bugz
Title: Re: Test inline attached image into quote
Post by: Spuds on September 27, 2016, 05:29:54 pm
We all need our hobbies, if smelling bugs is yours thats cool :D

Anyway not a bug, just a difference of opinion..
Code: [Select]
		// Generally we don't want to render inside of these tags ...
$disallow = array(
'quote' => 1,
'code' => 1,
'nobbc' => 1,
'html' => 1,
'php' => 1,
);

// Want to see them in quotes eh?
if (!empty($modSettings['attachment_inline_quotes']))
{
unset($disallow['quote']);
}

We (I) may have forgotten to add that $modSettings option to the ACP or its off on this site ... or simply remove the quote line in the disallow array in ila.integrate and all should be good ..
Title: Re: Test inline attached image into quote
Post by: emanuele on September 27, 2016, 06:03:35 pm
Actually, I thought that when disallowed it was replaced with the url...
/me was wrong. O:-)