diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-26 18:44:24 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-26 18:44:24 -0500 |
commit | b4fb614d530498fc3dd4d7ccee2a91fea517c6dc (patch) | |
tree | 61f079bc83487a47f0a080c2a23f16496d0a10b9 /includes | |
parent | 637e20b864977306ffe17d401e78f7d529c1d97e (diff) | |
download | fourisland-b4fb614d530498fc3dd4d7ccee2a91fea517c6dc.tar.gz fourisland-b4fb614d530498fc3dd4d7ccee2a91fea517c6dc.tar.bz2 fourisland-b4fb614d530498fc3dd4d7ccee2a91fea517c6dc.zip |
Fixed some more HTML validation errors
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/bbcode.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/bbcode.php b/includes/bbcode.php index c381f3c..5e29038 100755 --- a/includes/bbcode.php +++ b/includes/bbcode.php | |||
@@ -35,8 +35,8 @@ class BBCode | |||
35 | $this->bbcodes['u'] = '<U>{CONTENT}</U>'; | 35 | $this->bbcodes['u'] = '<U>{CONTENT}</U>'; |
36 | $this->bbcodes['url'] = '<A HREF="{CONTENT}">{CONTENT}</A>'; | 36 | $this->bbcodes['url'] = '<A HREF="{CONTENT}">{CONTENT}</A>'; |
37 | $this->bbcodes2['url'] = '<A HREF="{PARAM}">{CONTENT}</A>'; | 37 | $this->bbcodes2['url'] = '<A HREF="{PARAM}">{CONTENT}</A>'; |
38 | $this->bbcodes['img'] = '<IMG SRC="{CONTENT}">'; | 38 | $this->bbcodes['img'] = '<IMG SRC="{CONTENT}" ALT="{CONTENT}">'; |
39 | $this->bbcodes2['img'] = '<IMG SRC="{CONTENT}" ALT="{PARAM}" TITLE="{PARAM}" ALIGN="right">'; | 39 | $this->bbcodes2['img'] = '<IMG SRC="{CONTENT}" ALT="{PARAM}" TITLE="{PARAM}">'; |
40 | $this->bbcodes['big'] = '<BIG>{CONTENT}</BIG>'; | 40 | $this->bbcodes['big'] = '<BIG>{CONTENT}</BIG>'; |
41 | $this->bbcodes['small'] = '<SMALL>{CONTENT}</SMALL>'; | 41 | $this->bbcodes['small'] = '<SMALL>{CONTENT}</SMALL>'; |
42 | $this->bbcodes['ul'] = '<UL>{CONTENT}</UL>'; | 42 | $this->bbcodes['ul'] = '<UL>{CONTENT}</UL>'; |
@@ -51,8 +51,8 @@ class BBCode | |||
51 | $this->bbcodes2['bquote'] = '<P><DIV CLASS="autosize"><DIV CLASS="bubble"><DIV CLASS="bquote"><BLOCKQUOTE><DIV>{CONTENT}</DIV></BLOCKQUOTE></DIV><CITE><STRONG>{PARAM}</STRONG></CITE></DIV></DIV><DIV CLASS="cleardiv"></DIV>'; | 51 | $this->bbcodes2['bquote'] = '<P><DIV CLASS="autosize"><DIV CLASS="bubble"><DIV CLASS="bquote"><BLOCKQUOTE><DIV>{CONTENT}</DIV></BLOCKQUOTE></DIV><CITE><STRONG>{PARAM}</STRONG></CITE></DIV></DIV><DIV CLASS="cleardiv"></DIV>'; |
52 | $this->bbcodes2['abbr'] = '<ABBR TITLE="{PARAM}">{CONTENT}</ABBR>'; | 52 | $this->bbcodes2['abbr'] = '<ABBR TITLE="{PARAM}">{CONTENT}</ABBR>'; |
53 | $this->bbcodes['hidden'] = '<SPAN STYLE="display: none">{CONTENT}</SPAN>'; | 53 | $this->bbcodes['hidden'] = '<SPAN STYLE="display: none">{CONTENT}</SPAN>'; |
54 | $this->bbcodes['thumb'] = '<A HREF="/images/{CONTENT}"><IMG SRC="http://fourisland.com/thumb.php?file=images/{CONTENT}&mode=scale&by=521&side=0"></A>'; | 54 | $this->bbcodes['thumb'] = '<A HREF="/images/{CONTENT}"><IMG SRC="http://fourisland.com/thumb.php?file=images/{CONTENT}&mode=scale&by=521&side=0" ALT="{CONTENT}"></A>'; |
55 | $this->bbcodes['thumb2'] = '<A HREF="/images/{CONTENT}"><IMG SRC="http://fourisland.com/thumb.php?file=images/{CONTENT}&mode=scale&by=260&side=0" ALIGN="right"></A>'; | 55 | $this->bbcodes['thumb2'] = '<A HREF="/images/{CONTENT}"><IMG SRC="http://fourisland.com/thumb.php?file=images/{CONTENT}&mode=scale&by=260&side=0" ALIGN="right" ALT="{CONTENT}"></A>'; |
56 | 56 | ||
57 | $this->init = true; | 57 | $this->init = true; |
58 | } | 58 | } |