PDA

View Full Version : Inline Images (IMG) used inside QUOTE tags show up as links...


ConqSoft
08-04-2005, 02:02 PM
I searched but wasn't able to find anything.

Has anyone seen a hack/plug-in that will make inline images (IMG Tag) show up as a LINK if it's inside quote tags?

People tend to quote posts that have images in them, and the image shows up 10 times in the same thread. so I'd like to prevent that...

hollyboy
11-17-2005, 04:10 PM
Looking for this too.
I remember I had found it for vb3 somewhere

hollyboy
11-20-2005, 02:15 PM
none can help?

up :)

J82980BA3E43
11-21-2005, 06:54 PM
yes i Looking for this too for Vbulletin 3.5 gold !!!

Chris M
11-21-2005, 09:06 PM
Looking for this too.
I remember I had found it for vb3 somewhere

You don't remember where by any chance?

Chris

hollyboy
11-22-2005, 12:40 AM
You don't remember where by any chance?

Chris

no I dont :( and I've been searched a lot here

J82980BA3E43
11-22-2005, 02:26 PM
Look here fore Vbulletin 3.7
https://vborg.vbsupport.ru/showthread.php?t=77173&page=1&pp=15

Chris M
11-22-2005, 02:44 PM
Untested, but this should work for 3.5
Open /includes/class_bbcode.php
Find:
$template = $this->printthread ? 'bbcode_quote_printthread' : 'bbcode_quote';
eval('$html = "' . fetch_template($template) . '";');
add underneath:
if(contains_bbcode_img_tags($html))
{
$html = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $html);
}
(this is using Zero Tolerance's code - I only found where to put it :p)

Chris

hollyboy
11-22-2005, 08:16 PM
Untested, but this should work for 3.5
Open /includes/class_bbcode.php
Find:
$template = $this->printthread ? 'bbcode_quote_printthread' : 'bbcode_quote';
eval('$html = "' . fetch_template($template) . '";');
add underneath:
if(contains_bbcode_img_tags($html))
{
$html = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $html);
}
(this is using Zero Tolerance's code - I only found where to put it :p)

Chris

Fatal error: Call to undefined function: contains_bbcode_img_tags() in /home/interfan/public_html/forum/includes/class_bbcode.php on line 1290

Chris M
11-22-2005, 08:35 PM
From /includes/class_bbcode.php:
/**
* Determines whether a string contains an [img] tag.
*
* @param string Text to search
*
* @return bool Whether the text contains an [img] tag
*/
function contains_bbcode_img_tags($text)
{
Interesting...

Chris

hollyboy
11-22-2005, 08:41 PM
From /includes/class_bbcode.php:
/**
* Determines whether a string contains an [img] tag.
*
* @param string Text to search
*
* @return bool Whether the text contains an [img] tag
*/
function contains_bbcode_img_tags($text)
{
Interesting...

Chris

what about it? :ermm:

Chris M
11-22-2005, 08:44 PM
Ok - Try this:
Find:
$template = $this->printthread ? 'bbcode_quote_printthread' : 'bbcode_quote';
eval('$html = "' . fetch_template($template) . '";');
Above add:
// run the censor
$text = fetch_censored_text($message);
$has_img_tag = ($do_bbcode ? $this->contains_bbcode_img_tags($text) : 0);
if ($has_img_tag)
{
$message = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $message);
}
That should work :)

Chris

hollyboy
11-22-2005, 08:50 PM
Ok - Try this:
Find:
$template = $this->printthread ? 'bbcode_quote_printthread' : 'bbcode_quote';
eval('$html = "' . fetch_template($template) . '";');
Above add:
// run the censor
$text = fetch_censored_text($message);
$has_img_tag = ($do_bbcode ? $this->contains_bbcode_img_tags($text) : 0);
if ($has_img_tag)
{
$message = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "handle_bbcode_url('\\1', '', 'url')", $message);
}
That should work :)

Chris

didnt work :(
I still get the images in the quote, not its link

Chris M
11-22-2005, 09:46 PM
Ok I have no clue then - It's baffling me...

I know I'm close but can't get it to work - I hate regular expressions :speechless:

Chris

hollyboy
11-24-2005, 05:53 AM
any1 else can try maybe?

J82980BA3E43
11-24-2005, 02:03 PM
who wants help our pleas :disappointed:

hollyboy
11-28-2005, 10:51 AM
who wants help our pleas :disappointed:


nobody :(

J82980BA3E43
11-30-2005, 08:26 AM
nobody :(

Please help :disappointed:

J82980BA3E43
12-20-2005, 06:00 PM
https://vborg.vbsupport.ru/external/2005/12/5.gifhttps://vborg.vbsupport.ru/external/2005/12/6.gif