Deprecated 'call-time pass-by-reference' fixed.

This commit is contained in:
tomas 2005-03-05 19:57:32 +00:00
parent abb0b5af6a
commit 599165d0e7
1 changed files with 1 additions and 1 deletions
livesupport/modules/htmlUI/var

View File

@ -34,7 +34,7 @@ class uiBrowser extends uiBase {
include ( $actionFunctionFileName ) ;
if ( method_exists( $actionFunctionName ) )
{
$actionFunctionName( &$this, $params ) ;
$actionFunctionName( $this, $params ) ;
}
}
}