Quote:
Originally Posted by Deadly_Killer
well logically, if it was in a class called super and you joined it.
you could do:
super::echo(stuff);
I think.
|
PHP Code:
function onCreated()
{
this._oldEcho = this.echo;
}
function echo( text )
{
return this._oldEcho( format("[%s]: %s", this.name, text ) ) );
}
That's be what I'd have to do... Which is a pain...
