Enabled error handling for extensions.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 10 Oct 2009 12:30:22 +0000 (12:30 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 10 Oct 2009 12:30:22 +0000 (12:30 +0000)
frontaccounting.php

index 267780b191b40593fbf4880aea4d5c480ccf5415..60ebd99ccd6a0756100474df4f87b9e02b18d073 100644 (file)
@@ -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']);
                }
        }