diff options
author | MattJeevas <tehnya@gmail.com> | 2017-11-23 21:42:39 +0300 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2017-11-25 15:28:19 -0500 |
commit | c9fecf7d879c78f54fde696337b335ccbe34c9cc (patch) | |
tree | 8bee01aec7ce329c45e4462e8c2694362b91ef8a | |
parent | 721f2cc51365527a1c70fc788a3b095503963887 (diff) | |
download | php-git-c9fecf7d879c78f54fde696337b335ccbe34c9cc.tar.gz |
Print PHP version in phpinfo() func html title
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/standard/info.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ PHP NEWS 'php ext_skel.php' for all options. This means there is no dependencies thrus making it work on Windows out of the box. (Kalle) . Removed support for BeOS. (Kalle) + . Add PHP_VERSION to phpinfo() <title/>. (github/MattJeevas) . Fixed bug #75031 (support append mode in temp/memory streams). (adsr) . Fixed bug #74860 (Uncaught exceptions not being formatted properly when error_log set to "syslog"). (Philip Prindeville) diff --git a/ext/standard/info.c b/ext/standard/info.c index c40eda9d84..75143319f6 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -766,7 +766,7 @@ PHPAPI void php_print_info_htmlhead(void) php_info_print("<html xmlns=\"http://www.w3.org/1999/xhtml\">"); php_info_print("<head>\n"); php_info_print_style(); - php_info_print("<title>phpinfo()</title>"); + php_info_printf("<title>PHP %s - phpinfo()</title>", PHP_VERSION); php_info_print("<meta name=\"ROBOTS\" content=\"NOINDEX,NOFOLLOW,NOARCHIVE\" />"); php_info_print("</head>\n"); php_info_print("<body><div class=\"center\">\n"); |