diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-12-29 02:11:16 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-12-29 02:11:16 +0000 |
commit | d67d6ed26acc27e447d4b0625db2fbcfc61d5753 (patch) | |
tree | 78d7d31edea789990b2e7ee9568deed1e4175122 /phpBB/styles/subsilver2/template | |
parent | 33fde908eeba6794b536d54beee61e81fbc5fc03 (diff) | |
download | forums-d67d6ed26acc27e447d4b0625db2fbcfc61d5753.tar forums-d67d6ed26acc27e447d4b0625db2fbcfc61d5753.tar.gz forums-d67d6ed26acc27e447d4b0625db2fbcfc61d5753.tar.bz2 forums-d67d6ed26acc27e447d4b0625db2fbcfc61d5753.tar.xz forums-d67d6ed26acc27e447d4b0625db2fbcfc61d5753.zip |
Fix Bug #30315 - No longer use group colours for usernames on print view. Colour could be white. Patch by Pasqualle.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10387 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subsilver2/template')
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewtopic_print.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html b/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html index 7963d76765..f1c59df1c8 100644 --- a/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html +++ b/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html @@ -85,7 +85,7 @@ hr.sep { <td width="10%" nowrap="nowrap">{L_TO}:</td> <td> <!-- BEGIN to_recipient --> - <!-- IF to_recipient.COLOUR --><span style="color:{to_recipient.COLOUR}"><!-- ELSE --><span<!-- IF to_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->><!-- ENDIF -->{to_recipient.NAME}</span> + <span<!-- IF to_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->>{to_recipient.NAME}</span> <!-- END to_recipient --> </td> </tr> diff --git a/phpBB/styles/subsilver2/template/viewtopic_print.html b/phpBB/styles/subsilver2/template/viewtopic_print.html index e1521c00a7..cfd78b6fc7 100644 --- a/phpBB/styles/subsilver2/template/viewtopic_print.html +++ b/phpBB/styles/subsilver2/template/viewtopic_print.html @@ -91,7 +91,7 @@ hr.sep { <table width="85%" cellspacing="3" cellpadding="0" border="0" align="center"> <tr> <td width="10%" nowrap="nowrap">{L_AUTHOR}: </td> - <td><b<!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}"<!-- ENDIF -->>{postrow.POST_AUTHOR}</b> [ {postrow.POST_DATE} ]</td> + <td><b>{postrow.POST_AUTHOR}</b> [ {postrow.POST_DATE} ]</td> </tr> <tr> <td width="10%" nowrap="nowrap">{L_POST_SUBJECT}: </td> |