mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
Use HTTPS URLs in resource files
Although it is unlikely that anybody ever sees these URLs, since they are not shown in the file property sheet, it's overdue to switch to HTTPS.
This commit is contained in:
parent
a46e87aa12
commit
9e9141f712
@ -1077,7 +1077,7 @@ function generate_version_info_resource(makefiletarget, basename, creditspath, s
|
||||
var thanks = "";
|
||||
var logo = "";
|
||||
var debug = "";
|
||||
var project_url = "http://www.php.net";
|
||||
var project_url = "https://www.php.net";
|
||||
var project_header = creditspath + "/php_" + basename + ".h";
|
||||
var versioning = "";
|
||||
|
||||
@ -1105,7 +1105,7 @@ function generate_version_info_resource(makefiletarget, basename, creditspath, s
|
||||
|
||||
if (creditspath.match(new RegExp("pecl"))) {
|
||||
/* PECL project url - this will eventually work correctly for all */
|
||||
project_url = "http://pecl.php.net/" + basename;
|
||||
project_url = "https://pecl.php.net/" + basename;
|
||||
|
||||
/* keep independent versioning PECL-specific for now */
|
||||
if (FSO.FileExists(project_header)) {
|
||||
|
@ -27,7 +27,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
#endif
|
||||
|
||||
#ifndef URL
|
||||
#define URL "http://www.php.net/"
|
||||
#define URL "https://www.php.net/"
|
||||
#endif
|
||||
|
||||
#ifndef EXT_VERSION
|
||||
|
Loading…
Reference in New Issue
Block a user