diff options
author | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:23:07 +0200 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:40:04 +0200 |
commit | 68ce17e59bf8bc09757f9b56fdad458679d6e988 (patch) | |
tree | 324ade0863f0680002324ccddcd8f4ae5e06f97c /console.php | |
parent | ec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff) | |
download | nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.tar.gz nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.zip |
Unify links to php.net
Update all links to https://www.php.net/
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'console.php')
-rw-r--r-- | console.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console.php b/console.php index 565569ef28b..694714cd63e 100644 --- a/console.php +++ b/console.php @@ -61,7 +61,7 @@ try { set_exception_handler('exceptionHandler'); if (!function_exists('posix_getuid')) { - echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL; + echo "The posix extensions are required - see https://www.php.net/manual/en/book.posix.php" . PHP_EOL; exit(1); } $user = posix_getpwuid(posix_getuid()); @@ -86,7 +86,7 @@ try { } if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) { - echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; + echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see https://www.php.net/manual/en/book.pcntl.php" . PHP_EOL; } $application = new Application( |