Skip to content

Commit f9c436a

Browse files
authoredOct 24, 2024
It's https://doc.php.net now, not just http: (php#171)
1 parent 12257c5 commit f9c436a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ actively translated into many languages. This guide is designed for
88
people who work on the official PHP documentation.
99

1010
The manual is built from the documentation using a tool called
11-
[PhD](http://doc.php.net/phd.php). The [local setup](local-setup.md)
11+
[PhD](https://doc.php.net/phd.php). The [local setup](local-setup.md)
1212
chapter explains how to set up a local development environment.
1313

1414
The manual is written to the [DocBook 5.2](https://tdg.docbook.org/tdg/5.2/)

‎docs/translating.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Otherwise, it needs to be synced.
4141
## Updating translation of existing file
4242
Let's assume that you want to update the translation of `password_needs_rehash()`.
4343
One way to see which files require updating, and what has to be
44-
changed to sync with the English version, is to use the [doc.php.net tools](http://doc.php.net).
44+
changed to sync with the English version, is to use the [doc.php.net tools](https://doc.php.net).
4545

4646
Choose your language from the right sidebar and then use the "Outdated files" tool.
4747
Filter files by directory or username (username used here comes from the `Mantainer`

‎scripts/check_phpdoc/view_check_phpdoc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @todo
2222
* Add support for online doc editing
2323
* Add count of "perfect" functions
24-
* Get this on http://doc.php.net/
24+
* Get this on https://doc.php.net/
2525
*/
2626

2727
$errors = array(

‎scripts/revcheck.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -820,8 +820,8 @@ function print_html_files( $enFiles , $trFiles , $lang )
820820
}
821821
$ll = strtolower( $lang );
822822
$kh = hash( 'sha256' , $key );
823-
$d1 = "http://doc.php.net/revcheck.php?p=plain&lang={$ll}&hbp={$tr->hash}&f=$key&c=on";
824-
$d2 = "http://doc.php.net/revcheck.php?p=plain&lang={$ll}&hbp={$tr->hash}&f=$key&c=off";
823+
$d1 = "https://doc.php.net/revcheck.php?p=plain&lang={$ll}&hbp={$tr->hash}&f=$key&c=on";
824+
$d2 = "https://doc.php.net/revcheck.php?p=plain&lang={$ll}&hbp={$tr->hash}&f=$key&c=off";
825825
$nm = "<a href='$d2'>{$en->name}</a> <a href='$d1'>[colored]</a>";
826826
if ( $en->syncStatus == FileStatusEnum::RevTagProblem )
827827
$nm = $en->name;

0 commit comments

Comments
 (0)
Please sign in to comment.