Hi,
Is it possible to remove a function call inside an other function?
Basically like this, where the purpose is to stop Function B() from being called,
rest of the function will execute as normal:
PHP Code:
Function A()
{
...
Function B()
...
}
The function is impractical to recreate, so was wondering if it would be possible to do something like this.