1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 05:11:42 +02:00

Fixes #5464 - admin-ui fatal error with custom method attribute and method type and filter set to true.

This commit is contained in:
camer0n
2025-04-02 17:31:12 -07:00
parent ec5a16b3eb
commit b1bd073b84
2 changed files with 36 additions and 17 deletions

View File

@@ -61,12 +61,12 @@ class _blank_event // plugin-folder + '_event'
}
function myfunction($data) // the method to run.
function myfunction($data, $event) // the method to run.
{
// var_dump($data);
}
function anotherfunction($data) // the method to run.
function anotherfunction($data, $event) // the method to run.
{
// var_dump($data);
}