diff options
author | kasimi <mail@kasimi.net> | 2017-01-20 22:09:42 +0100 |
---|---|---|
committer | kasimi <mail@kasimi.net> | 2017-01-20 22:09:42 +0100 |
commit | eceb36a5463355707b9014533b3b19971f79177b (patch) | |
tree | e6e0d5ff1f7e35f3b592f5037ba9e2df6a2e69e8 /phpBB/install | |
parent | 84a8cf00ad9e51ae1463b1d02ec11b211b8b1ff6 (diff) | |
download | forums-eceb36a5463355707b9014533b3b19971f79177b.tar forums-eceb36a5463355707b9014533b3b19971f79177b.tar.gz forums-eceb36a5463355707b9014533b3b19971f79177b.tar.bz2 forums-eceb36a5463355707b9014533b3b19971f79177b.tar.xz forums-eceb36a5463355707b9014533b3b19971f79177b.zip |
[ticket/15035] Add phpinfo.php to 3.2.x install directory
In 3.1.x there's a phpinfo.php in the /install folder which seems to be removed in 3.2.x, perhaps by accident?
https://github.com/phpbb/phpbb/commits/3.2.x/phpBB/install/phpinfo.php
Let's add it back for easier troubleshooting potential issues during installation.
PHPBB3-15035
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/phpinfo.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/install/phpinfo.php b/phpBB/install/phpinfo.php new file mode 100644 index 0000000000..28c3b9ff04 --- /dev/null +++ b/phpBB/install/phpinfo.php @@ -0,0 +1,14 @@ +<?php +/** + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ + +phpinfo(); |