Skip to content

Commit

Permalink
Use HTTPS URLs in resource files
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cmb69 committed Jun 15, 2022
1 parent a46e87a commit 9e9141f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions win32/build/confutils.js
Expand Up @@ -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 = "";

Expand Down Expand Up @@ -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)) {
Expand Down
2 changes: 1 addition & 1 deletion win32/build/template.rc
Expand Up @@ -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
Expand Down

0 comments on commit 9e9141f

Please sign in to comment.