diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-09-17 18:19:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 18:19:54 +0200 |
commit | dada6ec60a7a4a7092748bbce6fafd1936a57389 (patch) | |
tree | 9054d423dbc1a5f08f80a90dd43b5560f72bc783 | |
parent | 7fcb754901a836fd8b9ce5d2c78008706c50b5c9 (diff) | |
parent | 1639289b95325972f65e810000c791bb8f50220b (diff) | |
download | nextcloud-server-dada6ec60a7a4a7092748bbce6fafd1936a57389.tar.gz nextcloud-server-dada6ec60a7a4a7092748bbce6fafd1936a57389.zip |
Merge pull request #22919 from J0WI/https-stackoverflow.com
Update urls to stackoverflow.com to "HTTPS"
-rw-r--r-- | apps/dav/lib/Upload/AssemblyStream.php | 2 | ||||
-rw-r--r-- | apps/workflowengine/lib/Check/RequestRemoteAddress.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/lib/Upload/AssemblyStream.php b/apps/dav/lib/Upload/AssemblyStream.php index ecd73cdf518..e42a1ceb9e5 100644 --- a/apps/dav/lib/Upload/AssemblyStream.php +++ b/apps/dav/lib/Upload/AssemblyStream.php @@ -73,7 +73,7 @@ class AssemblyStream implements \Icewind\Streams\File { $this->loadContext('assembly'); $nodes = $this->nodes; - // http://stackoverflow.com/a/10985500 + // https://stackoverflow.com/a/10985500 @usort($nodes, function (IFile $a, IFile $b) { return strnatcmp($a->getName(), $b->getName()); }); diff --git a/apps/workflowengine/lib/Check/RequestRemoteAddress.php b/apps/workflowengine/lib/Check/RequestRemoteAddress.php index 00d3d9b2577..abc13bf9e38 100644 --- a/apps/workflowengine/lib/Check/RequestRemoteAddress.php +++ b/apps/workflowengine/lib/Check/RequestRemoteAddress.php @@ -95,7 +95,7 @@ class RequestRemoteAddress implements ICheck { } /** - * Based on http://stackoverflow.com/a/594134 + * Based on https://stackoverflow.com/a/594134 * @param string $ip * @param string $rangeIp * @param int $bits @@ -109,7 +109,7 @@ class RequestRemoteAddress implements ICheck { } /** - * Based on http://stackoverflow.com/a/7951507 + * Based on https://stackoverflow.com/a/7951507 * @param string $ip * @param string $rangeIp * @param int $bits @@ -128,7 +128,7 @@ class RequestRemoteAddress implements ICheck { } /** - * Based on http://stackoverflow.com/a/7951507 + * Based on https://stackoverflow.com/a/7951507 * @param string $packedIp * @return string */ |