First, Thanks For This Hack!
---
Second;
Quote:
|
Originally Posted by grandfso Heh.. Neo
I am using 3.0.7 and i have little problem after installing your hack.
The folloring URL: You must first be a registered member to view any code. is being truncated into (and this is not hyperlink anymore so it doesnt work at all): http://img.photobucket.com/albums/a....dasdasdsad.jpg
I dont know what could be wrong, I hope you can tell me |
Change this in functions_bbcodeparse.php
<
if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > 55 AND !$wysiwygparse)
{
>
To This:
<
if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (strlen($tmp) > 255 AND !$wysiwygparse)
{
>
Then the links will be trimmed when they are bigger then 255 characters..
Regards,