mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #5084 from hubaishan/ticket/15510
[ticket/15510] Link Orphan attachments in ACP General to its page
This commit is contained in:
commit
d0143bec88
2 changed files with 9 additions and 2 deletions
|
@ -153,7 +153,13 @@
|
||||||
<td><strong>{PHP_VERSION_INFO}</strong></td>
|
<td><strong>{PHP_VERSION_INFO}</strong></td>
|
||||||
<!-- IF S_TOTAL_ORPHAN -->
|
<!-- IF S_TOTAL_ORPHAN -->
|
||||||
<td>{L_NUMBER_ORPHAN}{L_COLON} </td>
|
<td>{L_NUMBER_ORPHAN}{L_COLON} </td>
|
||||||
<td><strong>{TOTAL_ORPHAN}</strong></td>
|
<td>
|
||||||
|
<!-- IF TOTAL_ORPHAN > 0 -->
|
||||||
|
<a href="{U_ATTACH_ORPHAN}" title="{L_MORE_INFORMATION}"><strong>{TOTAL_ORPHAN}</strong></a>
|
||||||
|
<!-- ELSE -->
|
||||||
|
<strong>{TOTAL_ORPHAN}</strong>
|
||||||
|
<!-- ENDIF -->
|
||||||
|
</td>
|
||||||
<!-- ELSE -->
|
<!-- ELSE -->
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
|
|
|
@ -585,6 +585,7 @@ class acp_main
|
||||||
'U_INACTIVE_USERS' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=inactive&mode=list'),
|
'U_INACTIVE_USERS' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=inactive&mode=list'),
|
||||||
'U_VERSIONCHECK' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=update&mode=version_check'),
|
'U_VERSIONCHECK' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=update&mode=version_check'),
|
||||||
'U_VERSIONCHECK_FORCE' => append_sid("{$phpbb_admin_path}index.$phpEx", 'versioncheck_force=1'),
|
'U_VERSIONCHECK_FORCE' => append_sid("{$phpbb_admin_path}index.$phpEx", 'versioncheck_force=1'),
|
||||||
|
'U_ATTACH_ORPHAN' => append_sid("{$phpbb_admin_path}index.$phpEx", 'i=acp_attachments&mode=orphan'),
|
||||||
|
|
||||||
'S_VERSIONCHECK' => ($auth->acl_get('a_board')) ? true : false,
|
'S_VERSIONCHECK' => ($auth->acl_get('a_board')) ? true : false,
|
||||||
'S_ACTION_OPTIONS' => ($auth->acl_get('a_board')) ? true : false,
|
'S_ACTION_OPTIONS' => ($auth->acl_get('a_board')) ? true : false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue