View Full Version : Eliminate the auto stripping of multi-quotes.
john1744
07-06-2005, 06:35 PM
Say you have User 1 make a topic, User 2 quotes the message from User 1, and User 3 quotes User 2, who quoted User 1.
Under vB defaults, when User 3 quotes User 2 who quoted 1, it will only show User 2 message.
It strips out the multiple quotes.
I would like to know if anyone knows how to remove this in 3.5.0
Andreas
07-06-2005, 06:41 PM
Easiest way:
In functions.php
FIND
function strip_quotes($text)
{
$lowertext = strtolower($text);
REPLACE that with
function strip_quotes($text)
{
/*
$lowertext = strtolower($text);
FIND
while ($stack);
return $newtext;
}
REPLACE that with
while ($stack);
return $newtext;
*/
return $text;
}
Or in other words:
Replace the whole strip_quotes function with
function strip_quotes($text)
{
return $text;
}
john1744
07-06-2005, 11:15 PM
Wow thanks that worked great, I've been looking for that forever.
jluerken
07-07-2005, 06:04 AM
This should be an Option in the AdminCP of version 3.5.
The Admin should be able to decide to turn on/off multi quotes.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.