ModuleController: Fix typo in global var name
This commit is contained in:
parent
5e671e02af
commit
9d5bf610eb
|
@ -152,7 +152,7 @@ class ModuleController extends DocController
|
||||||
$lastModified = gmdate('D, d M Y H:i:s T', $imageInfo->getMTime());
|
$lastModified = gmdate('D, d M Y H:i:s T', $imageInfo->getMTime());
|
||||||
$match = false;
|
$match = false;
|
||||||
|
|
||||||
if (isset($_SERER['HTTP_IF_NONE_MATCH'])) {
|
if (isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
|
||||||
$ifNoneMatch = explode(', ', stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
|
$ifNoneMatch = explode(', ', stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
|
||||||
foreach ($ifNoneMatch as $tag) {
|
foreach ($ifNoneMatch as $tag) {
|
||||||
if ($tag === $etag) {
|
if ($tag === $etag) {
|
||||||
|
|
Loading…
Reference in New Issue