diff options
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | 6 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html index cf4364c9ff..35a9e41c92 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html +++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html @@ -47,15 +47,21 @@ <!-- EVENT ucp_pm_viewmessage_contact_fields_before --> <!-- IF U_PM --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{U_PM}" title="{L_PRIVATE_MESSAGE}"><span class="contact-icon pm-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- IF U_EMAIL --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{U_EMAIL}" title="{L_SEND_EMAIL_USER} {POST_AUTHOR}"><span class="contact-icon email-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- IF U_JABBER --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span class="contact-icon jabber-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- BEGIN custom_fields --> <!-- IF custom_fields.S_PROFILE_CONTACT --> diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index cfccafbe26..efdf5e9993 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -155,15 +155,21 @@ <div> <!-- IF postrow.U_PM --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{postrow.U_PM}" title="{L_PRIVATE_MESSAGE}"><span class="contact-icon pm-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- IF postrow.U_EMAIL --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{postrow.U_EMAIL}" title="{L_SEND_EMAIL_USER} {postrow.POST_AUTHOR}"><span class="contact-icon email-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- IF postrow.U_JABBER --> <!-- DEFINE $CNT = definition.CNT + 1 --> + <!-- IF $CNT % 4 == 1 --><div><!-- ENDIF --> <a <!-- IF $CNT % 4 == 0 -->class="last-cell" <!-- ENDIF -->href="{postrow.U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span class="contact-icon jabber-icon"></span></a> + <!-- IF $CNT % 4 == 0 --></div><!-- ENDIF --> <!-- ENDIF --> <!-- BEGIN custom_fields --> <!-- IF postrow.custom_fields.S_PROFILE_CONTACT --> |