Deprecated 'call-time pass-by-reference' fixed.
This commit is contained in:
parent
abb0b5af6a
commit
599165d0e7
|
@ -34,7 +34,7 @@ class uiBrowser extends uiBase {
|
||||||
include ( $actionFunctionFileName ) ;
|
include ( $actionFunctionFileName ) ;
|
||||||
if ( method_exists( $actionFunctionName ) )
|
if ( method_exists( $actionFunctionName ) )
|
||||||
{
|
{
|
||||||
$actionFunctionName( &$this, $params ) ;
|
$actionFunctionName( $this, $params ) ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue