Change the way vB formats the links?

costar

New Member
Hey guys,
i was wondering if there is a way to change the way vB formats the links, for example if I post a long link it gets shortened like this:

Code:
http://adress.com/veryvery...ss.html

but I want it to show the full adress

Code:
http://adress.com/veryverylongadress.html

i know that you can turn of the automaticly parse links thingy but i want it to be a link, i hope you understand my problem ;)
 
Make a back up first

Open Includes/class_bbcode.php

find:
PHP:
if (vbstrlen($tmp) > 55 AND $this->is_wysiwyg() == false)
and replace the 55 with a higher number.

Note:
This line can be found twice you want the second one

Just remember everytime you upgrade you have to re-edit this file + editing the php files is not a recommended thing to do unless you know what you are really doing.
 
Back
Top