mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
fix accidentaly deleted comma
This commit is contained in:
parent
aa1e576a3f
commit
16217f3655
@ -386,7 +386,7 @@ class RequestHandler extends ViewableData
|
||||
}
|
||||
|
||||
// Don't allow access to any non-public methods (inspect instance plus all extensions)
|
||||
$insts = array_merge([$this] (array) $this->getExtensionInstances());
|
||||
$insts = array_merge([$this], (array) $this->getExtensionInstances());
|
||||
foreach ($insts as $inst) {
|
||||
if (!method_exists($inst, $action)) {
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user