removed border= from image tags

This commit is contained in:
JT Smith 2006-03-21 21:13:36 +00:00
parent 7b3019c370
commit b55a7252e8
8 changed files with 10 additions and 10 deletions

View file

@ -97,7 +97,7 @@ sub toHtml {
$self->set("size", 6);
$self->set("maxlength", 6);
$self->session->scratch->set("captcha_".$self->get("name"), $challenge);
$self->set("subtext", '<img src="'.$storage->getUrl($filename).'" border="0" alt="captcha" align="middle" />'.$self->get("subtext"));
$self->set("subtext", '<img src="'.$storage->getUrl($filename).'" style="border-style:none;" alt="captcha" align="middle" />'.$self->get("subtext"));
return $self->SUPER::toHtml;
}