Merge pull request #7 from frickenate/master
Fix bug allowing cache reset without reset permission
This commit is contained in:
commit
1bfd8b114c
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