From 37597daad0e7a8f05257e83b24b2c7a3781233d3 Mon Sep 17 00:00:00 2001 From: Ben Klang Date: Wed, 30 Dec 2009 14:36:38 -0500 Subject: [PATCH] Fix call-time pass by reference (E_STRICT) --- framework/Cli/lib/Horde/Cli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Cli/lib/Horde/Cli.php b/framework/Cli/lib/Horde/Cli.php index 845e4b4c2..71f1070f5 100644 --- a/framework/Cli/lib/Horde/Cli.php +++ b/framework/Cli/lib/Horde/Cli.php @@ -449,7 +449,7 @@ class Horde_Cli { /* Run constructor now because it requires $_SERVER['SERVER_NAME'] to * be empty if called with a CGI SAPI. */ - $cli = &self::singleton(); + $cli = self::singleton(); @set_time_limit(0); ob_implicit_flush(true); -- 2.11.0