diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-01-03 21:38:42 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-01-03 21:38:42 -0500 |
commit | 2de8a037e0934585f34ddd509d4b30535808a019 (patch) | |
tree | 5dd9c6a4698c92e659747c1e11e3e0ae8fdf614f /includes | |
parent | e22583ee00024c97db06d417826f2d3b3d80833a (diff) | |
download | fourisland-2de8a037e0934585f34ddd509d4b30535808a019.tar.gz fourisland-2de8a037e0934585f34ddd509d4b30535808a019.tar.bz2 fourisland-2de8a037e0934585f34ddd509d4b30535808a019.zip |
Modified some image ALTs
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/bbcode.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/bbcode.php b/includes/bbcode.php index 5e29038..e586100 100755 --- a/includes/bbcode.php +++ b/includes/bbcode.php | |||
@@ -35,7 +35,7 @@ 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}" ALT="{CONTENT}">'; | 38 | $this->bbcodes['img'] = '<IMG SRC="{CONTENT}" ALT="Image">'; |
39 | $this->bbcodes2['img'] = '<IMG SRC="{CONTENT}" ALT="{PARAM}" TITLE="{PARAM}">'; | 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>'; |
@@ -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" ALT="{CONTENT}"></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="Image"></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>'; | 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="Image"></A>'; |
56 | 56 | ||
57 | $this->init = true; | 57 | $this->init = true; |
58 | } | 58 | } |