Fix bug allowing cache reset without reset permission
The permission check for non-ajax reset request was checking for allow_invalidate rather than the correct allow_reset.
This commit is contained in:
parent
aa41e5ad97
commit
3b9b50afab
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class OpCacheService
|
|||
echo json_encode($self->getData((empty($_GET['section']) ? null : $_GET['section'])));
|
||||
}
|
||||
exit;
|
||||
} else if (isset($_GET['reset']) && $self->getOption('allow_invalidate')) {
|
||||
} else if (isset($_GET['reset']) && $self->getOption('allow_reset')) {
|
||||
$self->resetCache();
|
||||
} else if (isset($_GET['invalidate']) && $self->getOption('allow_invalidate')) {
|
||||
$self->resetCache($_GET['invalidate']);
|
||||
|
|
Loading…
Reference in a new issue