Skip to content
Snippets Groups Projects
Commit db16fbeb authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

dev #59717 : silently fail when dedicated version compare helper does not exist

parent d42b35a1
Branches
Tags
3 merge requests!2334Master,!2191Dev#59717 versionning des configurations de boites,!2185Dev#59717 versionning des configurations de boites
Pipeline #1354 passed with stage
in 11 minutes and 45 seconds
......@@ -41,7 +41,7 @@ class ZendAfi_Form_VersionHelper {
protected function _classFor($element, $base_class) {
try {
$specific = $base_class . '_' . $this->_getElementType($element);
Zend_Loader::loadClass($specific);
@Zend_Loader::loadClass($specific);
$base_class = $specific;
} catch(Exception $e) {
// couldn't load, will default to generic class name
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment