
05-16-2006, 12:57 AM
|
|
|
Join Date: Jul 2002
Posts: 433
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Barakat
open the includes\class_bbcode.php and find
PHP Code:
function handle_bbcode_img_match($link)
{
$link = $this->strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
return '<img src="' . $link . '" border="0" alt="" />';
}
and replace it with
PHP Code:
function handle_bbcode_img_match($link)
{
$link = $this->strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
if ($NLP = @getimagesize($link))
{
if($NLP[0] > 500)
{
$NLP_W = $NLP[0] / 2;
$NLP_H = $NLP[1] / 2;
return '<table width="' . $NLP_W . '" border="0" cellspacing="0" cellpadding="0"><tr><td style="border: 1px solid #ABABAB"><a href="' . $link . '" rel="lightbox" title="picture width in its full size"><img src="' . $link . '" width="' . $NLP_W . '" height="' . $NLP_H . '" border="0" alt="press here to view the picture in its original size" /></a></td></tr><tr><td align=center><a href="' . $link . '" rel="lightbox" title="view the picture in its full size"><img border="0" src="images/NLP_button.gif"></a></td></tr></table>';
}
else
{
return '<img src="' . $link . '" border="0" alt="" />';
}
}
else
{
return '<img src="' . $link . '" border="0" alt="" />';
}
}
|
That didn't work???
|