diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php
index 0f2601f0349..b1a3a96bc3b 100644
--- a/htdocs/admin/dict.php
+++ b/htdocs/admin/dict.php
@@ -2056,7 +2056,7 @@ if ($id) {
if ($id == 4) {
print '
';
if ($iserasable) {
- print ''.$actl[$obj->favorite].'';
+ print ''.$actl[$obj->favorite].'';
} else {
print $langs->trans("AlwaysActive");
}
@@ -2066,7 +2066,7 @@ if ($id) {
// Active
print ' | ';
if ($canbedisabled) {
- print ''.$actl[$obj->active].'';
+ print ''.$actl[$obj->active].'';
} else {
if (in_array($obj->code, array('AC_OTH', 'AC_OTH_AUTO'))) {
print $langs->trans("AlwaysActive");
|