|
From: Paul S. O. <ps...@us...> - 2001-12-24 18:30:46
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv3186/templates/subSilver
Modified Files:
privmsgs_read_body.tpl profile_view_body.tpl
viewtopic_body.tpl
Log Message:
Doh! This is JavaScript not PHP ... brain is stuck in neutral and clutch has failed ...
Index: privmsgs_read_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/privmsgs_read_body.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** privmsgs_read_body.tpl 2001/12/24 18:10:43 1.5
--- privmsgs_read_body.tpl 2001/12/24 18:30:43 1.6
***************
*** 4,8 ****
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr != "" || icq_user_addr != " " )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
--- 4,8 ----
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr.length && icq_user_addr.indexOf(" ") == -1 )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
Index: profile_view_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/profile_view_body.tpl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** profile_view_body.tpl 2001/12/24 18:10:43 1.11
--- profile_view_body.tpl 2001/12/24 18:30:43 1.12
***************
*** 4,8 ****
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr != "" || icq_user_addr != " " )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
--- 4,8 ----
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr.length && icq_user_addr.indexOf(" ") == -1 )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
Index: viewtopic_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/viewtopic_body.tpl,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** viewtopic_body.tpl 2001/12/24 18:10:43 1.18
--- viewtopic_body.tpl 2001/12/24 18:30:43 1.19
***************
*** 4,8 ****
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr != "" || icq_user_addr != " " )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
--- 4,8 ----
function create_icq_subsilver(icq_user_addr, icq_status_img, icq_add_img)
{
! if( icq_user_addr.length && icq_user_addr.indexOf(" ") == -1 )
{
document.write('<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" style=" background-image: url(\'' + icq_add_img + '\'); background-repeat: no-repeat"><img src="images/spacer.gif" width="3" height="18" alt = "">' + icq_status_img + '<a href="http://wwp.icq.com/scripts/search.dll?to=' + icq_user_addr + '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="{L_ICQ_NUMBER}" /></a></td></tr></table>');
|