diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-15 13:51:02 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-15 13:51:02 -0500 |
commit | 05b573ebf76c737f89deaefd22ce963aa910e5d1 (patch) | |
tree | 73fdbdff4eca038566ab8fbe1490df8a008fed08 /phpBB/styles | |
parent | fc6457140cd775cb0f89c803324844d602200c14 (diff) | |
download | forums-05b573ebf76c737f89deaefd22ce963aa910e5d1.tar forums-05b573ebf76c737f89deaefd22ce963aa910e5d1.tar.gz forums-05b573ebf76c737f89deaefd22ce963aa910e5d1.tar.bz2 forums-05b573ebf76c737f89deaefd22ce963aa910e5d1.tar.xz forums-05b573ebf76c737f89deaefd22ce963aa910e5d1.zip |
[ticket/11103] Topic and post dis/approval notifications
Remove the formatted title function, plaintext is not needed since
email templates are used
Fix a number of bugs.
PHPBB3-11103
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index e217ceb449..87e0a2fa92 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -137,13 +137,13 @@ <ul style="list-style-type: none;"> <!-- BEGIN notifications --> <li style="padding: 10px; width: 290px;<!-- IF notifications.UNREAD --> background-color: grey;<!-- ENDIF -->"> - <a href="{notifications.URL}" style="text-decoration: none;"> + <!-- IF notifications.URL --><a href="{notifications.URL}" style="text-decoration: none;"><!-- ENDIF --> {notifications.AVATAR} <div> {notifications.FORMATTED_TITLE}<br /> {notifications.TIME} </div> - </a> + <!-- IF notifications.URL --></a><!-- ENDIF --> </li> <!-- END notifications --> </ul> |