diff options
author | Mario <mario@mariovavti.com> | 2025-02-28 20:29:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-02-28 20:29:08 +0000 |
commit | 0c97792ca72450f3706a87cbc0782ff98d678de9 (patch) | |
tree | 9757ffae5c62549b6da5c8874f4a3f641def9f2c | |
parent | 84d63b3b67887881e0341ca067b75b0c433db45c (diff) | |
parent | 63aa50eb8d0390584743eba80e1f9bc8a912e2c5 (diff) | |
download | volse-hubzilla-0c97792ca72450f3706a87cbc0782ff98d678de9.tar.gz volse-hubzilla-0c97792ca72450f3706a87cbc0782ff98d678de9.tar.bz2 volse-hubzilla-0c97792ca72450f3706a87cbc0782ff98d678de9.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
-rw-r--r-- | include/network.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php index 171138044..55eecac84 100644 --- a/include/network.php +++ b/include/network.php @@ -2104,7 +2104,7 @@ function get_request_string($url) { * Reconstructs a URL from its parsed components. * * This function takes a parsed URL as an associative array and reconstructs - * the URL based on the specified components (scheme, host, port, user, path, query, fragment). + * the URL based on the specified components (scheme, host, port, user, pass, path, query, fragment). * You can specify which components should be included in the final URL by passing the optional * `$parts` array. The function will return the complete URL string formed by combining * only the parts that exist in both the parsed URL and the `$parts` array. @@ -2115,7 +2115,7 @@ function get_request_string($url) { * * @param array $parts An optional array that specifies which components of the URL * should be included in the final string. Defaults to: - * ['scheme', 'host', 'port', 'user', 'path', 'query', 'fragment']. + * ['scheme', 'host', 'port', 'user', 'pass', 'path', 'query', 'fragment']. * If any of the components are not required, they can be omitted from the array. * * @return string The reconstructed URL as a string. |