From 599165d0e772fa7d870ec7494c58c254c6f8fe1c Mon Sep 17 00:00:00 2001 From: tomas Date: Sat, 5 Mar 2005 19:57:32 +0000 Subject: [PATCH] Deprecated 'call-time pass-by-reference' fixed. --- livesupport/modules/htmlUI/var/ui_browser.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livesupport/modules/htmlUI/var/ui_browser.class.php b/livesupport/modules/htmlUI/var/ui_browser.class.php index 818678b4f..6d7b41eb5 100644 --- a/livesupport/modules/htmlUI/var/ui_browser.class.php +++ b/livesupport/modules/htmlUI/var/ui_browser.class.php @@ -34,7 +34,7 @@ class uiBrowser extends uiBase { include ( $actionFunctionFileName ) ; if ( method_exists( $actionFunctionName ) ) { - $actionFunctionName( &$this, $params ) ; + $actionFunctionName( $this, $params ) ; } } }