summaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework
diff options
context:
space:
mode:
authorJuan Pablo Villafáñez <jvillafanez@solidgear.es>2017-04-04 10:12:41 +0200
committerJoas Schilling <coding@schilljs.com>2017-04-12 13:03:19 +0200
commit38e5135cb9730a5add715aa8e0b532a2aeb1835e (patch)
treeb62a87bb233dabd886e6dbe2fe005411b2f8620b /lib/private/AppFramework
parentaf42ca20252b166bec2da34970137ec790a18328 (diff)
downloadnextcloud-server-38e5135cb9730a5add715aa8e0b532a2aeb1835e.tar.gz
nextcloud-server-38e5135cb9730a5add715aa8e0b532a2aeb1835e.zip
Reorder the entries of the log for easier reading
Diffstat (limited to 'lib/private/AppFramework')
-rw-r--r--lib/private/AppFramework/Http/Request.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php
index 3f1e6fd951a..c6ef5169ddb 100644
--- a/lib/private/AppFramework/Http/Request.php
+++ b/lib/private/AppFramework/Http/Request.php
@@ -578,7 +578,8 @@ class Request implements \ArrayAccess, \Countable, IRequest {
}
if(empty($this->requestId)) {
- $this->requestId = $this->secureRandom->generate(20);
+ $validChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
+ $this->requestId = $this->secureRandom->generate(20, $validChars);
}
return $this->requestId;