diff options
| author | Matt Friedman <maf675@gmail.com> | 2013-02-15 14:38:36 -0800 |
|---|---|---|
| committer | Matt Friedman <maf675@gmail.com> | 2013-02-15 14:38:36 -0800 |
| commit | b05da5ec0e95ddb5bc645e661987ba0a7bb49573 (patch) | |
| tree | 84f362ab5f017360be8a785f48bd91d4998af4a7 | |
| parent | fdc9ad76ce592e4675c103f4aa34f72010b5d9ae (diff) | |
| download | forums-b05da5ec0e95ddb5bc645e661987ba0a7bb49573.tar forums-b05da5ec0e95ddb5bc645e661987ba0a7bb49573.tar.gz forums-b05da5ec0e95ddb5bc645e661987ba0a7bb49573.tar.bz2 forums-b05da5ec0e95ddb5bc645e661987ba0a7bb49573.tar.xz forums-b05da5ec0e95ddb5bc645e661987ba0a7bb49573.zip | |
[ticket/11103] HTML encode double arrow character
PHPBB3-11103
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index aff346cac5..b94eef7aad 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -157,7 +157,7 @@ {notifications.AVATAR} <div> <p>{notifications.FORMATTED_TITLE}</p> - <p class="notification_time">» {notifications.TIME}</p> + <p class="notification_time">» {notifications.TIME}</p> <!-- IF not notifications.URL and notifications.U_MARK_READ --> <p><a href="{notifications.U_MARK_READ}">{L_MARK_READ}</a></p> diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 95e026ae0e..a2d558d0ca 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -85,7 +85,7 @@ {notification_list.AVATAR} <div class="notifications"> <p class="notifications_title">{notification_list.FORMATTED_TITLE}</p> - <p class="notifications_time">» {notification_list.TIME}</p> + <p class="notifications_time">» {notification_list.TIME}</p> <!-- IF not notification_list.URL and notification_list.U_MARK_READ --> <p><a href="{notification_list.U_MARK_READ}">{L_MARK_READ}</a></p> diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index c3039257aa..8c167c959f 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -175,7 +175,7 @@ function marklist(id, name, state) <!-- IF notifications.URL --><a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"><!-- ENDIF --> {notifications.FORMATTED_TITLE} <!-- IF notifications.URL --></a><!-- ENDIF --> - <br />» {notifications.TIME} + <br />» {notifications.TIME} <!-- IF not notifications.URL and notifications.UNREAD --> <br /><a href="{notifications.U_MARK_READ}">{L_MARK_READ}</a> <!-- ENDIF --> diff --git a/phpBB/styles/subsilver2/template/ucp_notifications.html b/phpBB/styles/subsilver2/template/ucp_notifications.html index 5b98a9d815..1a1fda4c17 100644 --- a/phpBB/styles/subsilver2/template/ucp_notifications.html +++ b/phpBB/styles/subsilver2/template/ucp_notifications.html @@ -101,7 +101,7 @@ <!-- IF notification_list.URL --><a href="<!-- IF notification_list.UNREAD -->{notification_list.U_MARK_READ}<!-- ELSE -->{notification_list.URL}<!-- ENDIF -->"><!-- ENDIF --> <strong>{notification_list.FORMATTED_TITLE}</strong> <!-- IF notification_list.URL --></a><!-- ENDIF --><br /> - {notification_list.TIME} + » {notification_list.TIME} </span> </td> <td align="center"> |
