diff options
| -rw-r--r-- | phpBB/adm/style/acp_attachments.html | 71 | 
1 files changed, 40 insertions, 31 deletions
diff --git a/phpBB/adm/style/acp_attachments.html b/phpBB/adm/style/acp_attachments.html index 5e0c841d2b..2baca09f5e 100644 --- a/phpBB/adm/style/acp_attachments.html +++ b/phpBB/adm/style/acp_attachments.html @@ -340,35 +340,41 @@  	<!-- ENDIF -->  	</div> -	<table class="table1 zebra-table fixed-width-table"> -	<thead> -	<tr> -		<th>{L_FILENAME}</th> -		<th style="width: 15%;">{L_FILEDATE}</th> -		<th style="width: 15%;">{L_FILESIZE}</th> -		<th style="width: 15%;">{L_ATTACH_POST_ID}</th> -		<th style="width: 15%;">{L_ATTACH_TO_POST}</th> -		<th style="width: 15%;">{L_DELETE}</th> -	</tr> -	</thead> -	<tbody> -	<!-- BEGIN orphan --> +	<!-- IF .orphan --> +		<table class="table1 zebra-table fixed-width-table"> +		<thead>  		<tr> -			<td><a href="{orphan.U_FILE}">{orphan.REAL_FILENAME}</a></td> -			<td>{orphan.FILETIME}</td> -			<td>{orphan.FILESIZE}</td> -			<td><strong>{L_ATTACH_ID}{L_COLON} </strong><input type="number" min="0" max="9999999999" name="post_id[{orphan.ATTACH_ID}]" value="{orphan.POST_ID}" style="width: 75%;" /></td> -			<td><input type="checkbox" class="radio" name="add[{orphan.ATTACH_ID}]" /></td> -			<td><input type="checkbox" class="radio" name="delete[{orphan.ATTACH_ID}]" /></td> +			<th>{L_FILENAME}</th> +			<th style="width: 15%;">{L_FILEDATE}</th> +			<th style="width: 15%;">{L_FILESIZE}</th> +			<th style="width: 15%;">{L_ATTACH_POST_ID}</th> +			<th style="width: 15%;">{L_ATTACH_TO_POST}</th> +			<th style="width: 15%;">{L_DELETE}</th>  		</tr> -	<!-- END orphan --> -	<tr class="row4"> -		<td colspan="4"> </td> -		<td class="small"><a href="#" onclick="marklist('orphan', 'add', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'add', false); return false;">{L_UNMARK_ALL}</a></td> -		<td class="small"><a href="#" onclick="marklist('orphan', 'delete', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'delete', false); return false;">{L_UNMARK_ALL}</a></td> -	</tr> -	</tbody> -	</table> +		</thead> +		<tbody> +		<!-- BEGIN orphan --> +			<tr> +				<td><a href="{orphan.U_FILE}">{orphan.REAL_FILENAME}</a></td> +				<td>{orphan.FILETIME}</td> +				<td>{orphan.FILESIZE}</td> +				<td><strong>{L_ATTACH_ID}{L_COLON} </strong><input type="number" min="0" max="9999999999" name="post_id[{orphan.ATTACH_ID}]" value="{orphan.POST_ID}" style="width: 75%;" /></td> +				<td><input type="checkbox" class="radio" name="add[{orphan.ATTACH_ID}]" /></td> +				<td><input type="checkbox" class="radio" name="delete[{orphan.ATTACH_ID}]" /></td> +			</tr> +		<!-- END orphan --> +		<tr class="row4"> +			<td colspan="4"> </td> +			<td class="small"><a href="#" onclick="marklist('orphan', 'add', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'add', false); return false;">{L_UNMARK_ALL}</a></td> +			<td class="small"><a href="#" onclick="marklist('orphan', 'delete', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('orphan', 'delete', false); return false;">{L_UNMARK_ALL}</a></td> +		</tr> +		</tbody> +		</table> +	<!-- ELSE --> +		<div class="errorbox"> +			<p>{L_NO_ATTACHMENTS}</p> +		</div> +	<!-- ENDIF -->  	<!-- IF TOTAL_FILES -->  	<div class="pagination"> @@ -381,10 +387,13 @@  	</div>  	<!-- ENDIF --> -	<p class="submit-buttons"> -		<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />  -		<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> -	</p> +	<!-- IF .orphan --> +		<p class="submit-buttons"> +			<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />  +			<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> +		</p> +	<!-- ENDIF --> +  	{S_FORM_TOKEN}  	</fieldset>  	</form>  | 
