mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- fixing a bunch of bugs
- moved the install trigger error to sessions and also disabled it for those having DEBUG_EXTRA enabled. i hope not having introduced too many new bugs. git-svn-id: file:///svn/phpbb/trunk@6628 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
|
||||
<a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF topicrow.S_TOPIC_REPORTED -->
|
||||
<!-- IF topicrow.S_TOPIC_REPORTED and topicrow.U_MCP_REPORT -->
|
||||
<a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>
|
||||
<!-- ENDIF -->
|
||||
</p>
|
||||
|
@@ -103,8 +103,8 @@
|
||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr valign="middle">
|
||||
<td width="100%">
|
||||
<!-- IF postrow.S_POST_UNAPPROVED -->{UNAPPROVED_IMG} <span class="postapprove"><a href="{postrow.U_MCP_APPROVE}">{L_POST_UNAPPROVED}</a></span><!-- ENDIF -->
|
||||
<!-- IF postrow.S_POST_REPORTED -->{REPORTED_IMG}<span class="postreported"><a href="{postrow.U_MCP_REPORT}">{L_POST_REPORTED}</a></span><!-- ENDIF -->
|
||||
<!-- IF postrow.S_POST_UNAPPROVED and postrow.U_MCP_APPROVE -->{UNAPPROVED_IMG} <span class="postapprove"><a href="{postrow.U_MCP_APPROVE}">{L_POST_UNAPPROVED}</a></span><!-- ENDIF -->
|
||||
<!-- IF postrow.S_POST_REPORTED and postrow.U_MCP_REPORT -->{REPORTED_IMG}<span class="postreported"><a href="{postrow.U_MCP_REPORT}">{L_POST_REPORTED}</a></span><!-- ENDIF -->
|
||||
</td>
|
||||
<td width="10" nowrap="nowrap">{postrow.MINI_POST_IMG}</td>
|
||||
<td class="gensmall" nowrap="nowrap"><b>{L_POSTED}:</b> {postrow.POST_DATE}</td>
|
||||
|
@@ -16,6 +16,11 @@
|
||||
<td class="row1" align="center">
|
||||
|
||||
<table cellspacing="1" cellpadding="2" border="0">
|
||||
<!-- IF S_USER_INACTIVE -->
|
||||
<tr>
|
||||
<td align="center" style="color: red;"><b class="gen">{L_USER_IS_INACTIVE}</b><br />{L_INACTIVE_REASON}: {USER_INACTIVE_REASON}<br /><br /></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<tr>
|
||||
<td align="center"><!-- IF USER_COLOR --><b class="gen" style="color: #{USER_COLOR}"><!-- ELSE --><b class="gen"><!-- ENDIF -->{USERNAME}</b><!-- IF U_USER_ADMIN --><span class="genmed"> [ <a href="{U_USER_ADMIN}">{L_USER_ADMIN}</a> ]</span><!-- ENDIF --></td>
|
||||
</tr>
|
||||
|
@@ -197,8 +197,8 @@ function checkForm()
|
||||
<td class="row2">
|
||||
{S_HIDDEN_ADDRESS_FIELD}
|
||||
<!-- BEGIN to_recipient -->
|
||||
<span class="genmed">
|
||||
<a href="{to_recipient.U_VIEW}"<!-- IF to_recipient.COLOUR --> style="color:#{to_recipient.COLOUR}"<!-- ELSEIF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><b>{to_recipient.NAME}</b></a> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="{L_REMOVE}" /> <!-- ENDIF -->
|
||||
<span class="genmed"><strong>
|
||||
<!-- IF to_recipient.IS_GROUP --><a href="{to_recipient.U_VIEW}"><span class="blue">{to_recipient.NAME}</span></a><!-- ELSE -->{to_recipient.NAME_FULL}<!-- ENDIF --></strong> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="{L_REMOVE}" /> <!-- ENDIF -->
|
||||
<!-- BEGINELSE -->
|
||||
<span class="genmed">{L_NO_TO_RECIPIENT}</span>
|
||||
<!-- END to_recipient -->
|
||||
@@ -208,8 +208,8 @@ function checkForm()
|
||||
<td class="row1"><b class="genmed">{L_BCC}:</b></td>
|
||||
<td class="row2">
|
||||
<!-- BEGIN bcc_recipient -->
|
||||
<span class="genmed">
|
||||
<a href="{bcc_recipient.U_VIEW}"<!-- IF bcc_recipient.COLOUR --> style="color:#{bcc_recipient.COLOUR}"<!-- ELSEIF bcc_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><b>{bcc_recipient.NAME}</b></a> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{bcc_recipient.TYPE}[{bcc_recipient.UG_ID}]" value="Remove" /> <!-- ENDIF -->
|
||||
<span class="genmed"><strong>
|
||||
<!-- IF bcc_recipient.IS_GROUP --><a href="{bcc_recipient.U_VIEW}"><span class="blue">{bcc_recipient.NAME}</span></a><!-- ELSE -->{bcc_recipient.NAME_FULL}<!-- ENDIF --></strong> </span><!-- IF not S_EDIT_POST --><input class="post" type="submit" name="remove_{bcc_recipient.TYPE}[{bcc_recipient.UG_ID}]" value="Remove" /> <!-- ENDIF -->
|
||||
<!-- BEGINELSE -->
|
||||
<span class="genmed">{L_NO_BCC_RECIPIENT}</span>
|
||||
<!-- END bcc_recipient -->
|
||||
|
@@ -16,7 +16,7 @@
|
||||
<td rowspan="2" align="left" valign="top"><a name="{history_row.U_POST_ID}"></a>
|
||||
<table width="150" cellspacing="0">
|
||||
<tr>
|
||||
<td align="center" colspan="2"><b class="postauthor">{history_row.AUTHOR_NAME}</b></td>
|
||||
<td align="center" colspan="2"><b class="postauthor">{history_row.MESSAGE_AUTHOR_FULL}</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
@@ -77,7 +77,7 @@
|
||||
<!-- ENDIF -->
|
||||
</span></td>
|
||||
|
||||
<td class="row1" width="100" align="center"><p class="topicauthor"><!-- IF S_SHOW_RECIPIENTS -->{messagerow.RECIPIENTS}<!-- ELSE -->{messagerow.MESSAGE_AUTHOR}<!-- ENDIF --></p></td>
|
||||
<td class="row1" width="100" align="center"><p class="topicauthor"><!-- IF S_SHOW_RECIPIENTS -->{messagerow.RECIPIENTS}<!-- ELSE -->{messagerow.MESSAGE_AUTHOR_FULL}<!-- ENDIF --></p></td>
|
||||
<td class="row1" width="120" align="center"><p class="topicdetails">{messagerow.SENT_TIME}</p></td>
|
||||
<td class="row1" width="20" align="center"><p class="topicdetails"><input type="checkbox" class="radio" name="marked_msg_id[]" value="{messagerow.MESSAGE_ID}" /></p></td>
|
||||
</tr>
|
||||
|
@@ -14,7 +14,7 @@
|
||||
|
||||
<tr class="row1">
|
||||
<td class="genmed" nowrap="nowrap" width="150"><b>{L_PM_FROM}:</b></td>
|
||||
<td class="gen"><!-- IF U_AUTHOR_PROFILE --><a href="{U_AUTHOR_PROFILE}">{AUTHOR_NAME}</a><!-- ELSE -->{AUTHOR_NAME}<!-- ENDIF --></td>
|
||||
<td class="gen">{MESSAGE_AUTHOR_FULL}</td>
|
||||
</tr>
|
||||
|
||||
<tr class="row1">
|
||||
@@ -27,11 +27,7 @@
|
||||
<td class="genmed" nowrap="nowrap" width="150"><b>{L_TO}:</b></td>
|
||||
<td class="gen">
|
||||
<!-- BEGIN to_recipient -->
|
||||
<!-- IF not to_recipient.U_VIEW -->
|
||||
<span<!-- IF to_recipient.COLOUR --> style="color:#{to_recipient.COLOUR}"<!-- ELSEIF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->{to_recipient.NAME}</span>
|
||||
<!-- ELSE -->
|
||||
<a href="{to_recipient.U_VIEW}"<!-- IF to_recipient.COLOUR --> style="color:#{to_recipient.COLOUR}"<!-- ELSEIF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->>{to_recipient.NAME}</a>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF to_recipient.IS_GROUP --><span class="blue"><a href="{to_recipient.U_VIEW}">{to_recipient.NAME}</a></span><!-- ELSE -->{to_recipient.NAME_FULL} <!-- ENDIF -->
|
||||
<!-- END to_recipient -->
|
||||
</td>
|
||||
</tr>
|
||||
@@ -42,11 +38,7 @@
|
||||
<td class="genmed" nowrap="nowrap" width="150"><b>{L_BCC}:</b></td>
|
||||
<td class="gen">
|
||||
<!-- BEGIN bcc_recipient -->
|
||||
<!-- IF not bcc_recipient.U_VIEW -->
|
||||
<span<!-- IF bcc_recipient.COLOUR --> style="color:#{bcc_recipient.COLOUR}"<!-- ELSEIF bcc_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->{bcc_recipient.NAME}</span>
|
||||
<!-- ELSE -->
|
||||
<a href="{bcc_recipient.U_VIEW}"<!-- IF bcc_recipient.COLOUR --> style="color:#{bcc_recipient.COLOUR}"<!-- ELSEIF bcc_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->>{bcc_recipient.NAME}</a>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF bcc_recipient.IS_GROUP --><span class="blue"><a href="{bcc_recipient.U_VIEW}">{bcc_recipient.NAME}</a></span><!-- ELSE -->{bcc_recipient.NAME_FULL} <!-- ENDIF -->
|
||||
<!-- END bcc_recipient -->
|
||||
</td>
|
||||
</tr>
|
||||
|
@@ -77,7 +77,7 @@ hr.sep {
|
||||
<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
|
||||
<tr>
|
||||
<td width="10%" nowrap="nowrap">{L_PM_FROM}: </td>
|
||||
<td><b>{AUTHOR_NAME}</b> [ {SENT_DATE} ]</td>
|
||||
<td><b>{MESSAGE_AUTHOR}</b> [ {SENT_DATE} ]</td>
|
||||
</tr>
|
||||
|
||||
<!-- IF S_TO_RECIPIENT -->
|
||||
@@ -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="blue"<!-- ENDIF -->><!-- ENDIF -->{to_recipient.NAME}</span>
|
||||
<!-- IF to_recipient.COLOUR --><span style="color:{to_recipient.COLOUR}"><!-- ELSE --><span<!-- IF to_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><!-- ENDIF -->{to_recipient.NAME}</span>
|
||||
<!-- END to_recipient -->
|
||||
</td>
|
||||
</tr>
|
||||
@@ -96,7 +96,7 @@ hr.sep {
|
||||
<td width="10%" nowrap="nowrap">{L_BCC}:</td>
|
||||
<td>
|
||||
<!-- BEGIN bcc_recipient -->
|
||||
<!-- IF bcc_recipient.COLOUR --><span style="color:#{bcc_recipient.COLOUR}"><!-- ELSE --><span<!-- IF bcc_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><!-- ENDIF -->{bcc_recipient.NAME}</span>
|
||||
<!-- IF bcc_recipient.COLOUR --><span style="color:{bcc_recipient.COLOUR}"><!-- ELSE --><span<!-- IF bcc_recipient.IS_GROUP --> class="blue"<!-- ENDIF -->><!-- ENDIF -->{bcc_recipient.NAME}</span>
|
||||
<!-- END bcc_recipient -->
|
||||
</td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user