diff --git a/htdocs/core/search_page.php b/htdocs/core/search_page.php
index 7ca287625eb..194afb86d92 100644
--- a/htdocs/core/search_page.php
+++ b/htdocs/core/search_page.php
@@ -115,7 +115,7 @@ print "\n";
print "\n";
print '
';
print '';
-print '
';
diff --git a/htdocs/modulebuilder/template/class/myobject.class.php b/htdocs/modulebuilder/template/class/myobject.class.php
index d7a157c682f..4859162abb0 100644
--- a/htdocs/modulebuilder/template/class/myobject.class.php
+++ b/htdocs/modulebuilder/template/class/myobject.class.php
@@ -584,8 +584,8 @@ class MyObject extends CommonObject
// We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
$oldref = dol_sanitizeFileName($this->ref);
$newref = dol_sanitizeFileName($num);
- $dirsource = $conf->myobject->dir_output.'/'.$oldref;
- $dirdest = $conf->myobject->dir_output.'/'.$newref;
+ $dirsource = $conf->mymodule->dir_output.'/myobject/'.$oldref;
+ $dirdest = $conf->mymodule->dir_output.'/myobject/'.$newref;
if (!$error && file_exists($dirsource))
{
dol_syslog(get_class($this)."::validate() rename dir ".$dirsource." into ".$dirdest);
@@ -594,7 +594,7 @@ class MyObject extends CommonObject
{
dol_syslog("Rename ok");
// Rename docs starting with $oldref with $newref
- $listoffiles = dol_dir_list($conf->myobject->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
+ $listoffiles = dol_dir_list($conf->mymodule->dir_output.'/myobject/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
foreach ($listoffiles as $fileentry)
{
$dirsource = $fileentry['name'];
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index 55a4f3813e9..c8c535a9038 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -5173,9 +5173,17 @@ dd.dropdowndd ul li {
/* ============================================================================== */
-/* JMobile */
+/* JMobile - Android */
/* ============================================================================== */
+.searchpage .tagtr .tagtd {
+ padding-bottom: 3px;
+}
+.searchpage .tagtr .tagtd .button {
+ background: unset;
+ border: unset;
+}
+
li.ui-li-divider .ui-link {
color: #FFF !important;
}
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 604bc743f93..50c637be3c9 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -5306,9 +5306,17 @@ dd.dropdowndd ul li {
/* ============================================================================== */
-/* JMobile */
+/* JMobile - Android */
/* ============================================================================== */
+.searchpage .tagtr .tagtd {
+ padding-bottom: 3px;
+}
+.searchpage .tagtr .tagtd .button {
+ background: unset;
+ border: unset;
+}
+
li.ui-li-divider .ui-link {
color: #FFF !important;
}