diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-10 16:16:34 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-10 16:16:34 +0100 |
| commit | 8225200c6470d1abe939ca007b5915c82c601016 (patch) | |
| tree | 3db862123fee31fa59bcbf68cba2d814d2d08f87 | |
| parent | 1b4c6ca4c9e9ea2ce75d52edcca5f7a4f7bc89c3 (diff) | |
| download | themes-8225200c6470d1abe939ca007b5915c82c601016.tar.gz themes-8225200c6470d1abe939ca007b5915c82c601016.tar.bz2 themes-8225200c6470d1abe939ca007b5915c82c601016.zip | |
Use bitweaver error_reporting setting for smarty
| -rwxr-xr-x | includes/classes/BitSmarty.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/classes/BitSmarty.php b/includes/classes/BitSmarty.php index 1779396..aa1ee03 100755 --- a/includes/classes/BitSmarty.php +++ b/includes/classes/BitSmarty.php @@ -52,7 +52,7 @@ class BitSmarty extends \Smarty\Smarty { $this->force_compile = isset($smarty_force_compile) && $smarty_force_compile; $this->debugging = isset($smarty_debugging) ? $smarty_debugging : false; $this->assign( 'app_name', 'bitweaver' ); - $this->error_reporting = E_ALL; // & ~E_DEPRECATED & ~E_NOTICE; + $this->error_reporting = BIT_PHP_ERROR_REPORTING; global $permCheck; $permCheck = new PermissionCheck(); |
