mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Implode array before passing it to md5() - so far it 'worked' only because everyone else disabled error display
This commit is contained in:
parent
11db1686c2
commit
7aab3129e5
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@
|
|||
}
|
||||
|
||||
// Send Etag hash
|
||||
$hash = $lastmodified . '-' . md5($elements);
|
||||
$hash = $lastmodified . '-' . md5(implode('', $elements));
|
||||
header ("Etag: \"" . $hash . "\"");
|
||||
|
||||
if (isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue