Skip to content
Snippets Groups Projects
Commit 61ea62e8 authored by Prasad's avatar Prasad
Browse files

Disabled strict development mode in config template.

parent c2f1ad1d
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
// Adjust error_reporting favourable to deployment.
version_compare(PHP_VERSION, '5.5.0') <= 0 ? error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED & E_ERROR) : error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED & E_ERROR & ~E_STRICT); // PRODUCTION
//ini_set('display_errors','on'); version_compare(PHP_VERSION, '5.5.0') <= 0 ? error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED) : error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); // DEBUGGING
ini_set('display_errors','on'); error_reporting(E_ALL);
//ini_set('display_errors','on'); error_reporting(E_ALL); // STRICT DEVELOPMENT
include('vtigerversion.php');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment