From: Michael Gapczynski Date: Sat, 12 Jan 2013 01:56:36 +0000 (-0500) Subject: Don't use more entropy for etags X-Git-Tag: v5.0.0alpha1~171^2~48^2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8a63bcc1e85499335ade1df459f0c9f467161404;p=nextcloud-server.git Don't use more entropy for etags --- diff --git a/lib/files/storage/common.php b/lib/files/storage/common.php index e859d447f39..591803f0440 100644 --- a/lib/files/storage/common.php +++ b/lib/files/storage/common.php @@ -274,7 +274,7 @@ abstract class Common implements \OC\Files\Storage\Storage { $hash = call_user_func($ETagFunction, $path); return $hash; }else{ - return uniqid('', true); + return uniqid(); } } }