diff options
author | Chris Smith <toonarmy@phpbb.com> | 2008-10-10 17:38:17 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2008-10-10 17:38:17 +0000 |
commit | b86722d509042d548de593aa56750f5ca9b432c2 (patch) | |
tree | fb0d81a4daf82ce1305348b8898d034812f7f5d8 /phpBB/styles/prosilver/template/ucp_pm_history.html | |
parent | b30abf821f20bd0f6be108466b0bbe225347dd0c (diff) | |
download | forums-b86722d509042d548de593aa56750f5ca9b432c2.tar forums-b86722d509042d548de593aa56750f5ca9b432c2.tar.gz forums-b86722d509042d548de593aa56750f5ca9b432c2.tar.bz2 forums-b86722d509042d548de593aa56750f5ca9b432c2.tar.xz forums-b86722d509042d548de593aa56750f5ca9b432c2.zip |
Fix regression introduced in r8951 #34985
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8993 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_pm_history.html')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_pm_history.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_pm_history.html b/phpBB/styles/prosilver/template/ucp_pm_history.html index aaa4c53ac0..29e3a75c05 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_history.html +++ b/phpBB/styles/prosilver/template/ucp_pm_history.html @@ -19,7 +19,8 @@ <h3><a href="{history_row.U_VIEW_MESSAGE}" <!-- IF history_row.S_CURRENT_MSG -->class="current"<!-- ENDIF -->>{history_row.SUBJECT}</a></h3> <p class="author<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->">{history_row.MINI_POST_IMG} {L_SENT_AT}: <strong>{history_row.SENT_DATE}</strong><br /> {L_MESSAGE_BY_AUTHOR} {history_row.MESSAGE_AUTHOR_FULL}</p> - <div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->" id="message_{history_row.MSG_ID}">{history_row.MESSAGE}</div> + <div class="content<!-- IF history_row.S_CURRENT_MSG --> current<!-- ENDIF -->">{history_row.MESSAGE}</div> + <div id="message_{history_row.MSG_ID}" style="display: none;">{history_row.DECODED_MESSAGE}</div> </div> <span class="corners-bottom"><span></span></span></div> |