MyBB Community Forums

Full Version: "..." on the links, can we fix that ??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For example i put a long link in a thread, like
http://rapidshare.de/files/12203285/hababam_3_5.part01.rar.html

Bu it seems like

http://rapidshare.de/files/12203285/haba...1.rar.html

How can we remove "..." on the links ??

Thanks
In inc/functions_post.php

find/remove:
if($name == $url)
	{
		if(strlen($url) > 55)
		{
			$name = substr($url, 0, 40)."...".substr($url, -10);
		}
	}
thnks...