PDA

View Full Version : [RC2] Change [img] tag


corn
01-21-2004, 04:25 PM
I would like to add border="1" to the image tag.
but where can I change this ??
is it a template ? or hardcoded ??

tnx

Xenon
01-21-2004, 04:43 PM
includes/functions_bbcodeparse.php

// ###################### Start handle_bbcode_img_match #######################
// this is only called by handle_bbcode_img
function handle_bbcode_img_match($link)
{
$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

return '<img src="' . $link . '" border="0" alt="" />';
}

:)
there

corn
01-21-2004, 04:54 PM
tnx!!

btw, why didn't they put this in a template ??

Xenon
01-21-2004, 04:58 PM
i don't know.

maybe they thought one line isn't worth a new template ;)