diff options
author | Tristan Darricau <github@nicofuma.fr> | 2017-04-18 23:14:56 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2017-04-18 23:14:56 +0200 |
commit | 4cbf619fd597bedb8b61291928869ec6bad353f3 (patch) | |
tree | 59199bc99df71dbb2031e0707d2c8976ca165a51 /phpBB/includes/acp | |
parent | 2b233452c7355026cb55a715711506cd3c1985ef (diff) | |
parent | f677376b8ca4451e3a0c415f603ad1513ed24ef7 (diff) | |
download | forums-4cbf619fd597bedb8b61291928869ec6bad353f3.tar forums-4cbf619fd597bedb8b61291928869ec6bad353f3.tar.gz forums-4cbf619fd597bedb8b61291928869ec6bad353f3.tar.bz2 forums-4cbf619fd597bedb8b61291928869ec6bad353f3.tar.xz forums-4cbf619fd597bedb8b61291928869ec6bad353f3.zip |
Merge pull request #4705 from nomind60s/ticket/15097
[ticket/15097] Add PHP version to Board statistics
* github.com:phpbb/phpbb:
[ticket/15097] New 'Installed software' lead section
[ticket/15097] Resolve travis-ci error
[ticket/15097] Resolve travis-ci error
[ticket/15097] Add PHP version to Board statistics
[ticket/15097] Add PHP version to Board statistics
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r-- | phpBB/includes/acp/acp_main.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php index bb85d080ce..9b1a248923 100644 --- a/phpBB/includes/acp/acp_main.php +++ b/phpBB/includes/acp/acp_main.php @@ -577,6 +577,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_INFO' => PHP_VERSION, 'BOARD_VERSION' => $config['version'], 'U_ACTION' => $this->u_action, |