diff --git a/htdocs/admin/modulehelp.php b/htdocs/admin/modulehelp.php
index e0caaba0a93..ff0f7a58099 100644
--- a/htdocs/admin/modulehelp.php
+++ b/htdocs/admin/modulehelp.php
@@ -366,7 +366,7 @@ if ($mode == 'desc')
if ($mode == 'feature')
{
$text.='
'.$langs->trans("DependsOn").': ';
- if (count($objMod->requiredby)) $text.=join(',', $objMod->depends);
+ if (count($objMod->depends)) $text.=join(',', $objMod->depends);
else $text.=$langs->trans("None");
$text.='
'.$langs->trans("RequiredBy").': ';
if (count($objMod->requiredby)) $text.=join(',', $objMod->requiredby);
diff --git a/htdocs/admin/modules.php b/htdocs/admin/modules.php
index 06f7af5b8d6..ce5d4ec55eb 100644
--- a/htdocs/admin/modules.php
+++ b/htdocs/admin/modules.php
@@ -623,7 +623,7 @@ if ($mode == 'common')
$imginfo="info_black";
}
- print '
'."\n";
+ print '
'."\n";
// Picto + Name of module
print ' | ';
diff --git a/htdocs/core/class/extrafields.class.php b/htdocs/core/class/extrafields.class.php
index 277ff7a3895..43af66e51e7 100644
--- a/htdocs/core/class/extrafields.class.php
+++ b/htdocs/core/class/extrafields.class.php
@@ -747,7 +747,7 @@ class ExtraFields
$this->attribute_pos[$tab->name]=$tab->pos;
$this->attribute_alwayseditable[$tab->name]=$tab->alwayseditable;
$this->attribute_perms[$tab->name]=$tab->perms;
- $this->attribute_langfile[$tab->langs]=$tab->langs;
+ $this->attribute_langfile[$tab->name]=$tab->langs;
$this->attribute_list[$tab->name]=$tab->list;
$this->attribute_hidden[$tab->name]=$tab->ishidden;
$this->attribute_entityid[$tab->name]=$tab->entity;
diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php
index 50833fc857c..99734a4541c 100644
--- a/htdocs/core/class/html.form.class.php
+++ b/htdocs/core/class/html.form.class.php
@@ -4750,7 +4750,9 @@ class Form
// You can set MAIN_POPUP_CALENDAR to 'eldy' or 'jquery'
$usecalendar='combo';
- if (! empty($conf->use_javascript_ajax) && (empty($conf->global->MAIN_POPUP_CALENDAR) || $conf->global->MAIN_POPUP_CALENDAR != "none")) $usecalendar=empty($conf->global->MAIN_POPUP_CALENDAR)?'jquery':$conf->global->MAIN_POPUP_CALENDAR;
+ if (! empty($conf->use_javascript_ajax) && (empty($conf->global->MAIN_POPUP_CALENDAR) || $conf->global->MAIN_POPUP_CALENDAR != "none")) {
+ $usecalendar = ((empty($conf->global->MAIN_POPUP_CALENDAR) || $conf->global->MAIN_POPUP_CALENDAR == 'eldy')?'jquery':$conf->global->MAIN_POPUP_CALENDAR);
+ }
//if (! empty($conf->browser->phone)) $usecalendar='combo';
if ($d)
@@ -4795,7 +4797,6 @@ class Form
{
$retstring.="'."\n";
- // Add datepicker default options
- /*if (! defined('DISABLE_DATE_PICKER'))
+ // Add datepicker default options (needed by jquery datepicker!)
+ if (! defined('DISABLE_DATE_PICKER'))
{
print ''."\n";
- }*/
+ }
// JS forced by modules (relative url starting with /)
if (! empty($conf->modules_parts['js'])) // $conf->modules_parts['js'] is array('module'=>array('file1','file2'))
diff --git a/htdocs/theme/eldy/img/object_phoning_mobile.png b/htdocs/theme/eldy/img/object_phoning_mobile.png
new file mode 100644
index 00000000000..c94fd72ae14
Binary files /dev/null and b/htdocs/theme/eldy/img/object_phoning_mobile.png differ
diff --git a/htdocs/theme/md/img/object_phoning_mobile.png b/htdocs/theme/md/img/object_phoning_mobile.png
new file mode 100644
index 00000000000..c94fd72ae14
Binary files /dev/null and b/htdocs/theme/md/img/object_phoning_mobile.png differ
|