Skip to content
Snippets Groups Projects

add error_reporting=E_ALL to build.sh upgrade_db.php and catching warnings in patch_417

Merged Ghislain Loas requested to merge hotline into master
Compare and
2 files
+ 4
3
Preferences
Compare changes
Files
2
@@ -157,9 +157,10 @@ class Class_Migration_CleanProfileCfgModules {
$dispatcher = $this->_getDispatcherFor($module);
$class_name = $dispatcher->getControllerClass($request);
try {
$class_name = $dispatcher->loadClass($class_name);
// could throw warning if loadClass didn't work.
$class_name = @$dispatcher->loadClass($class_name);
return (new $class_name($request, new Zend_Controller_Response_Http, []))
->isDispatchable($dispatcher->getActionMethod($request));
->isDispatchable($dispatcher->getActionMethod($request));
} catch (Exception $e) {
return false;
}