diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-13 02:04:52 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-13 02:04:52 +0000 |
commit | 3720705e6b263f3036dbc05c258c52904416a807 (patch) | |
tree | 9324ffa4c90fc9f4e80a0cb51065ffccd5dfe4ab | |
parent | f928eef92dc6ae521b02fe975a6a32585b324530 (diff) | |
download | forums-3720705e6b263f3036dbc05c258c52904416a807.tar forums-3720705e6b263f3036dbc05c258c52904416a807.tar.gz forums-3720705e6b263f3036dbc05c258c52904416a807.tar.bz2 forums-3720705e6b263f3036dbc05c258c52904416a807.tar.xz forums-3720705e6b263f3036dbc05c258c52904416a807.zip |
I find things often work better when fixes are commited to CVS ... doh, I'm an idiot ... don't you just know that's going to appear in at least one persons sig ...
git-svn-id: file:///svn/phpbb/trunk@2127 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/templates/subSilver/viewtopic_body.tpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/templates/subSilver/viewtopic_body.tpl b/phpBB/templates/subSilver/viewtopic_body.tpl index 9ff7fdc25e..39d200f6ee 100644 --- a/phpBB/templates/subSilver/viewtopic_body.tpl +++ b/phpBB/templates/subSilver/viewtopic_body.tpl @@ -62,7 +62,10 @@ <td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}</td><td> </td><td valign="top" nowrap="nowrap"><script language="JavaScript" type="text/javascript"><!-- - document.write('<div style="position:relative"><div style="position:absolute">{postrow.ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{postrow.ICQ_STATUS_IMG}</div></div>'); + if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 ) + document.write('{postrow.ICQ_ADD_IMG}'); + else + document.write('<div style="position:relative"><div style="position:absolute">{postrow.ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{postrow.ICQ_STATUS_IMG}</div></div>'); //--></script><noscript>{postrow.ICQ_ADD_IMG}</noscript></td> </tr> |