aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2025-02-26 16:37:22 +0100
committerMario Vavti <mario@mariovavti.com>2025-02-26 16:37:22 +0100
commit7fb13f23fe5e0eefbf71766dad2fc4afb5faa595 (patch)
treefb644e76c21cbd90f4c2b406171cd4d64c96346e
parent9eff1a08d442b6593376c4864a4ae183bd288fa6 (diff)
downloadvolse-hubzilla-7fb13f23fe5e0eefbf71766dad2fc4afb5faa595.tar.gz
volse-hubzilla-7fb13f23fe5e0eefbf71766dad2fc4afb5faa595.tar.bz2
volse-hubzilla-7fb13f23fe5e0eefbf71766dad2fc4afb5faa595.zip
fix docu
-rw-r--r--include/network.php4
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.