MyBB Community Forums

Full Version: Long Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to take off the shortening of links when posting a long url?

i.e www.thisisaverylonglinkwhihhopefullywillgiveanexample.com
Open inc/class_parser.php

Find

if($name == $url && $this->options['shorten_urls'] != "no")
{
	if(my_strlen($url) > 55)
	{
		$name = my_substr($url, 0, 40)."...".my_substr($url, -10);
	}
}

Delete or change to a larger value ... Or change that "shorten_urls" option but i didn't find it in the "forumsettings" where "Allow HTML, Allow Mycode, ..." are so its a mysterious Option =P
Thanks that worked Smile