diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php
index 3c4b19e1c22..8e6e4ff823d 100644
--- a/htdocs/core/class/commonobject.class.php
+++ b/htdocs/core/class/commonobject.class.php
@@ -5799,11 +5799,14 @@ abstract class CommonObject
$param_list=array_keys($param['options']); // $param_list='ObjectName:classPath'
$showempty=(($required && $default != '')?0:1);
$out=$form->selectForForms($param_list[0], $keyprefix.$key.$keysuffix, $value, $showempty);
- list($class,$classfile)=explode(':',$param_list[0]);
- if(file_exists(dol_buildpath(dirname(dirname($classfile)).'/card.php')))$url_path=dol_buildpath(dirname(dirname($classfile)).'/card.php',1);
- else $url_path=dol_buildpath(dirname(dirname($classfile)).'/'.$class.'_card.php',1);
- $out.='';
- //TODO Add Javascript code to add input fields contents to new elements urls
+ if ($conf->global->MAIN_FEATURES_LEVEL >= 2)
+ {
+ list($class,$classfile)=explode(':',$param_list[0]);
+ if (file_exists(dol_buildpath(dirname(dirname($classfile)).'/card.php'))) $url_path=dol_buildpath(dirname(dirname($classfile)).'/card.php',1);
+ else $url_path=dol_buildpath(dirname(dirname($classfile)).'/'.$class.'_card.php',1);
+ $out.='';
+ // TODO Add Javascript code to add input fields contents to new elements urls
+ }
}
elseif ($type == 'password')
{