From: Michael J. Rubinsky Date: Wed, 5 Aug 2009 00:51:56 +0000 (-0400) Subject: Assuming this was left as include_once inadvertanly, chnage it back X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3a71c89aa353584b42094979fd9d3fa3bd412067;p=horde.git Assuming this was left as include_once inadvertanly, chnage it back to include. --- diff --git a/framework/Autoloader/lib/Horde/Autoloader.php b/framework/Autoloader/lib/Horde/Autoloader.php index 8df00d48d..4a3d5d310 100644 --- a/framework/Autoloader/lib/Horde/Autoloader.php +++ b/framework/Autoloader/lib/Horde/Autoloader.php @@ -71,7 +71,7 @@ class Horde_Autoloader $err_mask = $err_mask ^ E_DEPRECATED; } $oldErrorReporting = error_reporting($err_mask); - $included = include_once $file_path . '.php'; + $included = include $file_path . '.php'; error_reporting($oldErrorReporting); return $included; }