1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

- Fix some bugs

- fixed retrieving of permissions if the LIKE statement is used as well as proper supporting (needs testing on mssql)


git-svn-id: file:///svn/phpbb/trunk@6366 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-09-14 14:57:29 +00:00
parent 665adc1722
commit 79137c312c
11 changed files with 221 additions and 74 deletions

View File

@@ -13,6 +13,10 @@ body {
font-size: 10pt;
}
img {
border: 0;
}
td {
font-family: Verdana,serif;
font-size: 10pt;
@@ -85,7 +89,24 @@ hr.sep {
<td><b>{postrow.POST_SUBJECT}</b></td>
</tr>
<tr>
<td colspan="2"><hr class="sep" />{postrow.MESSAGE}</td>
<td colspan="2"><hr class="sep" />{postrow.MESSAGE}
<!-- IF postrow.S_HAS_ATTACHMENTS -->
<br clear="all" /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td><b class="genmed">{L_ATTACHMENTS}: </b></td>
</tr>
<!-- BEGIN attachment -->
<tr>
<td>{postrow.attachment.DISPLAY_ATTACHMENT}</td>
</tr>
<!-- END attachment -->
</table>
<!-- ENDIF -->
</td>
</tr>
</table>
<!-- END postrow -->