diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-01 23:22:18 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-01 23:22:18 +0000 |
commit | a711e6d677257b64574fb5c377dfbde7127da3c3 (patch) | |
tree | 7f0af4764382a88e96fa9fdb35794932de104e46 /phpBB/templates/subSilver/privmsgs_preview.tpl | |
parent | 09dc77b5813c43d5754d346b6a024d9650ae6a0b (diff) | |
download | forums-a711e6d677257b64574fb5c377dfbde7127da3c3.tar forums-a711e6d677257b64574fb5c377dfbde7127da3c3.tar.gz forums-a711e6d677257b64574fb5c377dfbde7127da3c3.tar.bz2 forums-a711e6d677257b64574fb5c377dfbde7127da3c3.tar.xz forums-a711e6d677257b64574fb5c377dfbde7127da3c3.zip |
Changes related to private messaging + some bug fixes
git-svn-id: file:///svn/phpbb/trunk@1111 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver/privmsgs_preview.tpl')
-rw-r--r-- | phpBB/templates/subSilver/privmsgs_preview.tpl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/phpBB/templates/subSilver/privmsgs_preview.tpl b/phpBB/templates/subSilver/privmsgs_preview.tpl new file mode 100644 index 0000000000..bdfcf29f90 --- /dev/null +++ b/phpBB/templates/subSilver/privmsgs_preview.tpl @@ -0,0 +1,26 @@ + +<table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline"> + <tr> + <th height="25" class="thHead" colspan="2">{L_PREVIEW}</th> + </tr> + <tr> + <td class="row2"><span class="genmed">{L_FROM}:</span></td> + <td width="100%" class="row2"><span class="genmed">{MESSAGE_FROM}</span></td> + </tr> + <tr> + <td class="row2"><span class="genmed">{L_TO}:</span></td> + <td width="100%" class="row2"><span class="genmed">{MESSAGE_TO}</span></td> + </tr> + <tr> + <td class="row2"><span class="genmed">{L_POSTED}:</span></td> + <td width="100%" class="row2"><span class="genmed">{POST_DATE}</span></td> + </tr> + <tr> + <td class="row2"><span class="genmed">{L_SUBJECT}:</span></td> + <td width="100%" class="row2"><span class="genmed">{POST_SUBJECT}</span></td> + </tr> + <tr> + <td valign="top" colspan="2" class="row1"><span class="postbody">{MESSAGE}</span></td> + </tr> +</table> +<br clear="all" /> |