From: Janusz Dobrowolski Date: Sat, 10 Oct 2009 12:30:22 +0000 (+0000) Subject: Enabled error handling for extensions. X-Git-Tag: v2.4.2~19^2~1150 X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=58f512a743d763678afce94892fed5983d4b2a2b Enabled error handling for extensions. --- 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']); } }