Commit 79865a49d9e0943135f7e2de1a70e768bd74a398
1 parent
69ba6782
made images borderless
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@539 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/visualpatterns/PatternImage.inc
| ... | ... | @@ -44,9 +44,9 @@ class PatternImage { |
| 44 | 44 | */ |
| 45 | 45 | function & render() { |
| 46 | 46 | if (isset($this->sImgWidth) && isset($this->sImgWidth)) { |
| 47 | - return "<img src=\"".$this->sImgURL."\" width=\"". $this->iImgWidth."\" height=\"".$this->iImgHeight."\" align=\"center\" />"; | |
| 47 | + return "<img src=\"".$this->sImgURL."\" width=\"". $this->iImgWidth."\" height=\"".$this->iImgHeight."\" align=\"center\" border=\"0\" />"; | |
| 48 | 48 | } |
| 49 | - return "<img src=\"".$this->sImgURL."\" align=\"center\" border =\"1\" />"; | |
| 49 | + return "<img src=\"".$this->sImgURL."\" align=\"center\" border=\"0\" />"; | |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | ... | ... |