1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-06 00:43:02 +02: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:
nomind60s 2017-02-17 14:19:18 -07:00
parent c06f4756ec
commit c30ad4ce60
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@
</tr>
<tr>
<td>{L_PHP_VERSION}{L_COLON} </td>
<td><strong>{PHP_VERSION}</strong></td>
<td><strong>{PHP_VERSION_INFO}</strong></td>
</tr>
<!-- ENDIF -->
</tbody>

View File

@ -569,7 +569,7 @@ class acp_main
'S_TOTAL_ORPHAN' => ($total_orphan === false) ? false : true,
'GZIP_COMPRESSION' => ($config['gzip_compress'] && @extension_loaded('zlib')) ? $user->lang['ON'] : $user->lang['OFF'],
'DATABASE_INFO' => $db->sql_server_info(),
'PHP_VERSION' => PHP_VERSION,
'PHP_VERSION_INFO' => PHP_VERSION,
'BOARD_VERSION' => $config['version'],
'U_ACTION' => $this->u_action,