mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/15097] Add PHP version to Board statistics
Rework commit message per DavidIQ's guidance and change variable name to avoid confusion PHPBB3-15907
This commit is contained in:
parent
c06f4756ec
commit
c30ad4ce60
2 changed files with 2 additions and 2 deletions
|
@ -169,7 +169,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{L_PHP_VERSION}{L_COLON} </td>
|
<td>{L_PHP_VERSION}{L_COLON} </td>
|
||||||
<td><strong>{PHP_VERSION}</strong></td>
|
<td><strong>{PHP_VERSION_INFO}</strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -569,7 +569,7 @@ class acp_main
|
||||||
'S_TOTAL_ORPHAN' => ($total_orphan === false) ? false : true,
|
'S_TOTAL_ORPHAN' => ($total_orphan === false) ? false : true,
|
||||||
'GZIP_COMPRESSION' => ($config['gzip_compress'] && @extension_loaded('zlib')) ? $user->lang['ON'] : $user->lang['OFF'],
|
'GZIP_COMPRESSION' => ($config['gzip_compress'] && @extension_loaded('zlib')) ? $user->lang['ON'] : $user->lang['OFF'],
|
||||||
'DATABASE_INFO' => $db->sql_server_info(),
|
'DATABASE_INFO' => $db->sql_server_info(),
|
||||||
'PHP_VERSION' => PHP_VERSION,
|
'PHP_VERSION_INFO' => PHP_VERSION,
|
||||||
'BOARD_VERSION' => $config['version'],
|
'BOARD_VERSION' => $config['version'],
|
||||||
|
|
||||||
'U_ACTION' => $this->u_action,
|
'U_ACTION' => $this->u_action,
|
||||||
|
|
Loading…
Add table
Reference in a new issue