PDA

View Full Version : Bubble like Quote boxes


Red Blaze
09-16-2003, 05:23 PM
<a href="http://www.vbulletintemplates.com/mods/showthread.php?t=4462" target="_blank">http://www.vbulletintemplates.com/mo...ead.php?t=4462</a>

I don't think this would be possible by just template modification. Since in the thread it's said to "run a query to change the maximum length" of the custom vb code box, or maybe actually. If someone can come up with that I'd really appreciate it.

If you need an example, around that message board in the lounge there's lots of examples.

Red Blaze
09-17-2003, 04:52 AM
At least show me what query I can use to change the maximum length for the custom vb code box. :(

base
09-17-2003, 02:01 PM
i have a feeling that this is what you are looking for, but i'd wait for a definite answer before applying this. or try it on a test installation first.

ALTER TABLE `bbcode` CHANGE `bbcodereplacement` `bbcodereplacement` VARCHAR( 255 ) NOT NULL

as far as i know, the max would be 255 characters in this situation, there is probably a different way to get more, but i don't know what that would be.

Brad
09-18-2003, 01:25 AM
Run this query then apply the changes to the quote vBcode

ALTER TABLE bbcode CHANGE bbcodereplacement bbcodereplacement TEXT NOT NULL;

Red Blaze
09-18-2003, 04:57 PM
Thank you! It worked. :)

Base, I had some trouble wanting to run that query because since you weren't so sure of it. ^^;