diff --git a/htdocs/core/tpl/admin_extrafields_add.tpl.php b/htdocs/core/tpl/admin_extrafields_add.tpl.php
index 25b86cdc0bf..db3e17bc123 100644
--- a/htdocs/core/tpl/admin_extrafields_add.tpl.php
+++ b/htdocs/core/tpl/admin_extrafields_add.tpl.php
@@ -118,9 +118,7 @@
| trans("AlwaysEditable"); ?> | > |
-global->MAIN_CAN_HIDE_EXTRAFIELDS)) { ?>
| trans("Hidden"); ?> | > |
-
global->MAIN_FEATURES_LEVEL >= 2) { ?>
| trans("ByDefaultInList"); ?>
diff --git a/htdocs/core/tpl/admin_extrafields_edit.tpl.php b/htdocs/core/tpl/admin_extrafields_edit.tpl.php
index f12f90d6206..e17a9073067 100644
--- a/htdocs/core/tpl/admin_extrafields_edit.tpl.php
+++ b/htdocs/core/tpl/admin_extrafields_edit.tpl.php
@@ -110,7 +110,7 @@ elseif (($type== 'sellist') || ($type == 'chkbxlst') || ($type == 'link') )
|
| trans("AttributeCode"); ?> | |
| trans("Type"); ?> |
-array('varchar', 'phone', 'mail', 'select'),
@@ -135,7 +135,7 @@ else
{
print $type2label[$type];
print '';
-}
+}
?>
|
@@ -167,11 +167,7 @@ else
| trans("AlwaysEditable"); ?> | > |
-global->MAIN_CAN_HIDE_EXTRAFIELDS)) { ?>
| trans("Hidden"); ?> | > |
-';
-}?>
global->MAIN_FEATURES_LEVEL >= 2) { ?>
| trans("ByDefaultInList"); ?>
diff --git a/htdocs/core/tpl/admin_extrafields_view.tpl.php b/htdocs/core/tpl/admin_extrafields_view.tpl.php
index 6acc81f009f..e131b345e1d 100644
--- a/htdocs/core/tpl/admin_extrafields_view.tpl.php
+++ b/htdocs/core/tpl/admin_extrafields_view.tpl.php
@@ -61,7 +61,7 @@ foreach($extrafields->attribute_type as $key => $value)
print ' | '.yn($extrafields->attribute_unique[$key])." | \n";
print ''.yn($extrafields->attribute_required[$key])." | \n";
print ''.yn($extrafields->attribute_alwayseditable[$key])." | \n";
- if (! empty($conf->global->MAIN_CAN_HIDE_EXTRAFIELDS)) print ''.yn($extrafields->attribute_hidden[$key])." | \n"; // Add hidden option on not working feature. Why hide if user can't see it.
+ print ''.yn($extrafields->attribute_hidden[$key])." | \n"; // Add hidden option on not working feature. Why hide if user can't see it.
print ''.img_edit().'';
print " ".img_delete()." | \n";
print "
";