Officially support PHP 7.2.0.

SVN:trunk[5888]
This commit is contained in:
Denis Flaven
2018-06-15 16:37:11 +00:00
parent f132d751f5
commit 8943a67f85
5 changed files with 19 additions and 3 deletions

View File

@@ -448,6 +448,11 @@ class iTopExtensionsMap
SetupPage::log_warning("Eval of $sModuleFile did not return the expected information...");
}
}
catch(ParseError $e)
{
// Continue...
SetupPage::log_warning("Eval of $sModuleFile caused a parse error: ".$e->getMessage()." at line ".$e->getLine());
}
catch(Exception $e)
{
// Continue...
@@ -1348,4 +1353,4 @@ class iTopExtensionsMap
),
);
}
}
}