Skip to content
Snippets Groups Projects
Commit 1f0df22c authored by Prasad's avatar Prasad
Browse files

Tunned error_reporting friendly to installation

parent 54c0476e
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@ class Install_Index_view extends Vtiger_View_Controller {
public function Step7(Vtiger_Request $request) {
// Set favourable error reporting
version_compare(PHP_VERSION, '5.5.0') <= 0 ? error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED) : error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);
version_compare(PHP_VERSION, '5.5.0') <= 0 ? error_reporting(E_ERROR & ~E_NOTICE & ~E_DEPRECATED) : error_reporting(E_ERROR & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);
$moduleName = $request->getModule();
$webuiInstance = new Vtiger_WebUI();
......
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