|
From: Paul S. O. <ps...@us...> - 2002-02-12 16:08:05
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv8874/templates/subSilver
Modified Files:
privmsgs_read_body.tpl
Log Message:
Resolve Netscape 4.x issue with page display problems due to ICQ icon
Index: privmsgs_read_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/privmsgs_read_body.tpl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** privmsgs_read_body.tpl 6 Jan 2002 00:51:46 -0000 1.11
--- privmsgs_read_body.tpl 12 Feb 2002 15:54:49 -0000 1.12
***************
*** 54,58 ****
{WWW_IMG} {AIM_IMG} {YIM_IMG} {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">{ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{ICQ_ADD_IMG}</noscript></td>
--- 54,61 ----
{WWW_IMG} {AIM_IMG} {YIM_IMG} {MSN_IMG}</td><td> </td><td valign="top" nowrap="nowrap"><script language="JavaScript" type="text/javascript"><!--
! if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
! document.write('{ICQ_ADD_IMG}');
! else
! document.write('<div style="position:relative"><div style="position:absolute">{ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{ICQ_ADD_IMG}</noscript></td>
|