From 58f512a743d763678afce94892fed5983d4b2a2b Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Sat, 10 Oct 2009 12:30:22 +0000 Subject: [PATCH] Enabled error handling for extensions. --- frontaccounting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontaccounting.php b/frontaccounting.php index 267780b1..60ebd99c 100644 --- a/frontaccounting.php +++ b/frontaccounting.php @@ -25,7 +25,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ foreach ($installed_extensions as $ext) { if ($ext['type'] == 'module') - @include_once($path_to_root."/".$ext['path']."/".$ext['filename']); + include_once($path_to_root."/".$ext['path']."/".$ext['filename']); } } -- 2.30.2